-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.25 KB
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
37
38
39
40
{
"name": "simdrive",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -n server,web -c blue,green \"npm:dev:server\" \"npm:dev:web\"",
"dev:web": "vite --host 0.0.0.0",
"dev:server": "tsx watch server/index.ts",
"build": "tsc && vite build && tsc -p server/tsconfig.json",
"start": "node server-dist/server/index.js",
"typecheck": "tsc --noEmit && tsc -p server/tsconfig.json --noEmit && npm run typecheck:playtests",
"typecheck:playtests": "tsc -p playtests/tsconfig.json --noEmit",
"playtest:lap": "tsx playtests/full-lap.ts",
"playtest:capture": "tsx playtests/visual-capture.ts"
},
"dependencies": {
"@react-three/fiber": "^9.4.0",
"express": "^5.1.0",
"lucide-react": "^0.468.0",
"qrcode.react": "^4.2.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"three": "^0.181.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/node": "^22.19.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.181.0",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.2.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vite": "^7.2.7"
}
}