-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.2 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": "tsoap-gameserver",
"version": "1.0.0",
"description": "npm init template for bootstraping an empty Colyseus project",
"main": "lib/index.js",
"scripts": {
"start": "ts-node index.ts",
"loadtest": "colyseus-loadtest loadtest/example.ts --room game --numClients 10",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/colyseus/create-colyseus/issues"
},
"homepage": "https://github.com/colyseus/create-colyseus#readme",
"devDependencies": {
"@colyseus/loadtest": "^0.14.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.8",
"@types/node": "^14.14.21",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@sanity/client": "^2.0.1",
"@sentry/node": "^5.26.0",
"@types/lodash": "^4.14.162",
"@types/mongoose": "^5.7.36",
"@types/uuid": "^8.3.0",
"colyseus": "^0.14.0",
"cors": "^2.8.5",
"easystarjs": "pwrstudio/easystarjs",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"lodash": "^4.17.20",
"mongoose": "^5.10.9",
"poisson-process": "^1.0.0",
"unique-names-generator": "^4.3.1",
"uuid": "^8.3.1"
}
}