-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "lizard-arena",
"version": "0.0.1",
"description": "Example of using `https://www.colyseus.io/` with `@geckos.io/phaser-on-nodejs`",
"scripts": {
"build:client": "parcel build src/client/public/game.html",
"build:server": "tsc -p src/server/tsconfig.json",
"build": "concurrently \"npm:build:*\"",
"clean": "rm -rf ./build ./dist",
"serve:client": "parcel watch src/client/public/game.html",
"serve:server": "nodemon src/server/server.ts",
"serve": "concurrently \"npm:serve:*\"",
"start": "node build/server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hatala91/lizard-arena.git"
},
"keywords": [
"colyseus",
"phaser",
"geckos.io"
],
"author": "hatala91",
"license": "MIT",
"bugs": {
"url": "https://github.com/hatala91/lizard-arena/issues"
},
"homepage": "https://github.com/hatala91/-arena#readme",
"dependencies": {
"@geckos.io/phaser-on-nodejs": "^1.2.5",
"colyseus": "^0.14.23",
"concurrently": "^6.2.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"phaser": "^3.55.2",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.9.1",
"colyseus.js": "^0.14.13",
"nodemon": "^2.0.12",
"parcel": "^2.0.0-rc.0",
"prettier": "^2.4.0",
"ts-node": "^10.2.1"
}
}