-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 KB
/
package.json
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
{
"name": "CS1",
"version": "0.3.5",
"description": "Game Engine for making 3D multiplayer games in JavaScript.",
"main": "server/server.js",
"scripts": {
"prebuild": "npm run config",
"build": "rollup -c",
"prewatch": "npm run config",
"watch": "rollup -c -w",
"dev": "npm-run-all --parallel start watch",
"start": "node server/server.js",
"config": "if [ -f './src/core/config/client-config.js' ]; then cp ./src/core/config/client-config.js .data/; fi;"
},
"devDependencies": {
"npm-run-all": "^4.1.3",
"rollup": "^0.60.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^4.0.0",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-uglify-es": "^0.0.1",
"rollup-plugin-json": "^3.1.0"
},
"dependencies": {
"express": "^4.16.3",
"socket.io": "^2.2.0",
"uuid": "^3.3.2",
"lowdb": "^1.x"
},
"engines": {
"node": "10.x"
},
"repository": {
"url": "https://glitch.com/edit/#!/cs1"
},
"license": "MIT",
"keywords": [
"node",
"glitch",
"express",
"cs1"
]
}