forked from Wil2129/Battle-arena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.35 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
46
47
48
49
{
"name": "my-app",
"version": "1.0.0",
"description": "npm init template for bootstraping an empty Colyseus project",
"main": "index.js",
"scripts": {
"start": "npm run deploy",
"deploy": "cd server && pm2 start index.js -i max",
"start:server": "node server/index.js",
"start:wepback": "cd client && webpack-dev-server --config webpack/base.js --hot-reload --watch",
"build": "webpack --config webpack/prod.js ",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"author": "",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"raw-loader": "^1.0.0",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@colyseus/monitor": "^0.10.0",
"@colyseus/social": "^0.10.2",
"colyseus": "^0.10.9",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"pm2": "^3.5.1",
"colyseus.js": "^0.10.8",
"jquery": "^3.4.1",
"phaser": "^3.16.2"
},
"engines": {
"node": "10.x"
}
}