-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 961 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 961 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
{
"name": "tornado-io",
"version": "1.0.0",
"description": "Multiplayer IO tornado game built with Three.js",
"type": "module",
"scripts": {
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"build": "vite build",
"start": "node dist/server/index.js"
},
"dependencies": {
"@capacitor/android": "^8.2.0",
"@capacitor/core": "^8.2.0",
"@capacitor/haptics": "^8.0.1",
"@capacitor/network": "^8.0.1",
"@capacitor/screen-orientation": "^8.0.1",
"@capacitor/status-bar": "^8.0.1",
"express": "^4.21.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"three": "^0.170.0"
},
"devDependencies": {
"@capacitor/cli": "^7.6.0",
"@types/express": "^4.17.21",
"@types/three": "^0.170.0",
"concurrently": "^9.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^5.4.0"
}
}