-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.31 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.31 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
41
42
43
44
45
46
{
"name": "agar3d",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "3D multiplayer game inspired by Agar.io",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "cd server && npm start",
"server:dev": "cd server && npm run dev",
"client": "cd client && npm start",
"build": "cd client && npm run build",
"preview": "concurrently \"npm run server\" \"cd client && npm run preview\"",
"setup": "npm install && concurrently \"cd server && npm install\" \"cd client && npm install\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethanbleier/agar3d.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethanbleier/agar3d/issues"
},
"homepage": "https://github.com/ethanbleier/agar3d#readme",
"dependencies": {
"@types/three": "^0.174.0",
"express": "^4.21.2",
"socket.io": "^4.8.1",
"three": "^0.174.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/socket.io-client": "^1.4.36",
"nodemon": "^3.1.9",
"socket.io-client": "^4.8.1",
"vite": "^6.2.0",
"concurrently": "^8.2.1"
},
"engines": {
"node": ">=16.0.0"
}
}