-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
31 lines (31 loc) · 838 Bytes
/
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
{
"name": "colyseus-examples",
"version": "1.0.0",
"description": "Usage Examples of Colyseus Game Server",
"main": "index.js",
"scripts": {
"start": "nodemon --watch '**/*.ts' --exec ts-node index.ts",
"bundle-colyseus-client": "browserify ./node_modules/colyseus.js/lib/index.js -s Colyseus -o static/colyseus.js",
"build": "npm run bundle-colyseus-client",
"heroku-postbuild": "npm run build"
},
"engines": {
"node": "8.9.1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@colyseus/monitor": "^0.1.7",
"colyseus": "^0.9.19",
"colyseus.js": "^0.9.15",
"express": "^4.14.0",
"nodemon": "^1.18.6",
"serve-index": "^1.8.0",
"superagent": "^3.8.1"
},
"devDependencies": {
"browserify": "^14.4.0",
"ts-node": "^5.0.1",
"typescript": "^2.7.2"
}
}