-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1 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
{
"name": "monad-game-engine",
"version": "1.0.0",
"description": "Monad Game Engine — Three.js + WebGPU + Colyseus multiplayer game engine with AI agent and Monad blockchain integration",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "node src/server/index.js",
"client": "vite",
"build": "vite build",
"start": "NODE_ENV=production node src/server/index.js"
},
"dependencies": {
"@colyseus/ws-transport": "^0.15.0",
"@privy-io/react-auth": "^3.13.1",
"@privy-io/server-auth": "^1.32.5",
"buffer": "^6.0.3",
"cannon-es": "^0.20.0",
"colyseus": "^0.15.0",
"colyseus.js": "^0.15.28",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.3",
"pg": "^8.18.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"three": "^0.183.1",
"viem": "^2.45.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.1.3",
"concurrently": "^8.2.0",
"vite": "^5.0.0"
}
}