-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "phaser3-multiplayer-example-with-geckos.io",
"version": "1.0.0",
"description": "",
"type": "module",
"engines": {
"node": "^14.15 || >=16"
},
"scripts": {
"start": "npm run dev",
"dev": "npm-run-all --parallel dev:*",
"build": "npm run parcel:build",
"play": "cross-env-shell NODE_ENV=production node server/server.js",
"test": "node test/test.js",
"dev:webpack": "webpack -c webpack.config.cjs --watch",
"dev:nodemon": "nodemon --delay 500ms server/server.js"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@geckos.io/client": "2.2.1",
"@geckos.io/phaser-on-nodejs": "1.2.7",
"@geckos.io/server": "2.2.1",
"axios": "^0.21.1",
"base64-js": "^1.5.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash-es": "^4.17.21",
"phaser": "3.55.2",
"tinycolor2": "^1.4.2"
},
"devDependencies": {
"@yandeu/prettier-config": "^0.0.2",
"cross-env": "^7.0.3",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"puppeteer": "^10.4.0",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
}
}