forked from yandeu/phaser3-multiplayer-with-physics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 3.02 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "phaser3-multiplayer-with-physics",
"version": "1.0.0",
"description": "Phaser 3 - Real-Time Multiplayer Game with MatterJS Physics",
"homepage": "https://github.com/yandeu/phaser3-multiplayer-with-physics#readme",
"main": "server.js",
"scripts": {
"start": "npm run serve",
"dev": "npm-run-all --parallel server client physics stats",
"server": "npm-run-all --parallel server:*",
"server:nodemon": "nodemon --watch dist/server dist/server/server.js",
"server:webpack": "webpack --config webpack/webpack.server.js --watch",
"stats": "webpack --config webpack/webpack.stats.js --watch",
"client": "webpack --config webpack/webpack.client.js --watch",
"physics": "webpack --config webpack/webpack.physics.js --watch",
"build": "del-cli ./dist && webpack --config webpack/webpack.client.prod.js && webpack --config webpack/webpack.physics.prod.js && webpack --config webpack/webpack.server.js && webpack --config webpack/webpack.stats.prod.js",
"build:server": "webpack --config webpack/webpack.server.js",
"build:client": "webpack --config webpack/webpack.client.js",
"build:physics": "webpack --config webpack/webpack.physics.js",
"serve": "node dist/server/server.js",
"prettier": "prettier --write src/**/*.ts",
"docker:start": "npm i --only=production && npm run serve",
"docker:publish": "npm run build && docker-compose up -d --build",
"docker:up": "docker-compose up -d --build"
},
"author": {
"name": "Yannick Deubel",
"url": "https://github.com/yandeu"
},
"repository": {
"type": "git",
"url": "https://github.com/yandeu/phaser3-multiplayer-with-physics.git"
},
"template": {
"name": "phaser3-multiplayer-with-physics",
"description": "This game is based on the phaser3-multiplayer-with-physics",
"url": "https://github.com/yandeu/phaser3-multiplayer-with-physics",
"author": "Yannick Deubel (https://github.com/yandeu)"
},
"license": "MIT",
"dependencies": {
"@geckos.io/phaser-on-nodejs": "^1.0.4",
"axios": "^0.19.2",
"compression": "^1.7.4",
"express": "^4.17.1",
"helmet": "^3.21.2",
"moment": "^2.24.0",
"phaser": "^3.22.0",
"pidusage": "^2.0.17",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"source-map-support": "^0.5.16",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/compression": "1.0.1",
"@types/express": "^4.17.2",
"@types/helmet": "0.0.45",
"@types/jsdom": "^12.2.4",
"@types/node": "^13.7.0",
"@types/pidusage": "^2.0.1",
"@types/socket.io": "^2.1.4",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.7",
"copy-webpack-plugin": "^5.1.1",
"del-cli": "^3.0.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"object-sizeof": "^1.5.2",
"terser-webpack-plugin": "^2.3.4",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}