-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 951 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
32
33
{
"name": "my-app",
"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 my_room --numClients 2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/colyseus/create-colyseus/issues"
},
"homepage": "https://github.com/colyseus/create-colyseus#readme",
"devDependencies": {
"@colyseus/loadtest": "^0.12.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@colyseus/monitor": "^0.11.17",
"@colyseus/social": "^0.10.2",
"colyseus": "^0.12.0",
"colyseus.js": "^0.12.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^5.3.1"
}
}