-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "cube-server",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"client:watch": "webpack --watch --mode development --config webpack-client.config.js",
"server:watch": "webpack --watch --mode development --config webpack-server.config.js",
"server": "PORT=3000 nodemon ./dist/index.js",
"start": "npm-run-all -p server client:watch server:watch",
"client:build": "webpack --mode production --config webpack-client.config.js",
"server:build": "webpack --mode production --config webpack-server.config.js",
"build": "npm run server:build && npm run client:build",
"prod": "pm2 restart index"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"level-rocksdb": "^5.0.0",
"socket.io": "^4.1.1",
"socket.io-client": "^4.1.1",
"three": "^0.128.0",
"three-pathfinding": "^0.14.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"copy-webpack-plugin": "^9.0.0",
"html-webpack-plugin": "^5.3.1",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"webpack-node-externals": "^3.0.0"
}
}