forked from oncyberio/game-server-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
43
44
45
{
"private": true,
"name": "my-app",
"version": "1.0.0",
"description": "npm init template for bootstrapping an empty Colyseus project",
"main": "build/index.js",
"engines": {
"node": ">= 16.13.0"
},
"scripts": {
"start": "tsx watch src/index.ts",
"loadtest": "tsx loadtest/example.ts --room my_room --numClients 2",
"build": "npm run clean && tsc",
"clean": "rimraf build",
"test": "mocha -r tsx test/**_test.ts --exit --timeout 15000"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/colyseus/create-colyseus/issues"
},
"homepage": "https://github.com/colyseus/create-colyseus#readme",
"devDependencies": {
"@colyseus/cloud": "^1.0.11",
"@colyseus/loadtest": "^0.15.0",
"@colyseus/testing": "^0.15.0",
"@types/express": "^4.17.1",
"@types/mocha": "^10.0.1",
"mocha": "^10.2.0",
"rimraf": "^5.0.0",
"tsx": "^4.10.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@colyseus/monitor": "^0.15.0",
"@colyseus/playground": "^0.15.3",
"@colyseus/tools": "^0.15.42",
"async-mutex": "^0.5.0",
"colyseus": "^0.15.0",
"cors": "^2.8.5",
"ethers": "^6.13.3",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1"
}
}