-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.45 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
47
48
{
"name": "dixit",
"version": "0.1.0",
"description": "For NISH innovation day 2019",
"scripts": {
"start": "node server/index.js",
"dev": "npx webpack --env watch",
"build": "npx webpack --env prod",
"pm2-start": "pm2 start ecosystem.config.js",
"pm2-stop": "pm2 delete ecosystem.config.js",
"loadtest": "colyseus-loadtest loadtest/example.js --room my_room --numClients 2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@colyseus/loadtest": "^0.11.0",
"antd": "^3.23.6",
"babel-loader": "^8.0.2",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.1.0",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-scripts": "3.2.0",
"style-loader": "^0.20.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"@babel/cli": "7.1.0",
"@babel/core": "^7.0.0-rc.1",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0-rc.1",
"@babel/preset-react": "^7.0.0-rc.1",
"@colyseus/monitor": "^0.11.0",
"@colyseus/social": "^0.10.2",
"clean-webpack-plugin": "^3.0.0",
"colyseus": "^0.11.0",
"colyseus.js": "^0.11.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"http-server": "^0.11.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"uglifyjs-webpack-plugin": "^2.2.0"
},
"private": true
}