-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"private": true,
"name": "my-app",
"version": "1.0.0",
"description": "npm init template for bootstrapping an empty Colyseus project",
"main": "lib/index.js",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"start": "ts-node src/index.ts",
"heroku-postbuild": "npm run build",
"loadtest": "colyseus-loadtest loadtest/example.ts --room my_room --numClients 2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "14.x"
},
"author": "",
"license": "UNLICENSED",
"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.1",
"prettier": "^2.2.1",
"ts-node": "^8.1.0",
"ts-node-dev": "^1.1.6",
"typescript": "^3.4.5"
},
"dependencies": {
"@colyseus/monitor": "^0.12.2",
"@colyseus/social": "^0.10.9",
"colyseus": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-jwt": "^5.3.1",
"mongoose": "^5.11.12"
}
}