forked from colyseus/colyseus-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "colyseus-examples",
"version": "1.0.1",
"description": "Usage Examples of Colyseus Game Server with Arena Hosting",
"main": "lib/index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "npm run clean && tsc && node_modules/copyfiles/copyfiles --flat src/static/* ./dist/static/",
"start": "node dist/index.js",
"clean": "node node_modules/rimraf/bin dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=14.x"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@colyseus/uwebsockets-transport": "^0.15.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.14",
"copyfiles": "^2.4.1",
"rimraf": "^2.7.1",
"ts-node": "^8.1.0",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.8.4",
"uwebsockets-express": "^1.1.14"
},
"dependencies": {
"@colyseus/tools": "^0.15.0",
"@colyseus/monitor": "^0.15.0",
"colyseus": "^0.15.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"serve-index": "^1.8.0",
"superagent": "^3.8.1"
}
}