-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 926 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "simulations",
"version": "0.1.0",
"private": true,
"packageManager": "yarn@4.13.0",
"dependencies": {
"@use-gesture/react": "^10.3.1",
"mobx": "^6.15.0",
"mobx-react": "^9.2.1",
"pixi.js": "^8.17.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router": "^7.13.1",
"react-router-dom": "^7.13.1",
"styled-components": "^6.3.11"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.29.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"prettier": "^3.8.1",
"typescript": "~5.9.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest run",
"preview": "vite preview",
"deploy": "sh script/deploy.sh",
"clean": "rm -rf dist"
}
}