-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1009 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1009 Bytes
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
{
"private": true,
"name": "quip-snap",
"type": "module",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"engines": {
"node": ">= 20.9.0"
},
"scripts": {
"start": "tsx watch src/index.ts",
"loadtest": "tsx loadtest/example.ts --room my_room --numClients 2",
"build": "tsc",
"test": "mocha -r tsx test/**_test.ts --exit --timeout 15000"
},
"author": "Trey",
"devDependencies": {
"@colyseus/loadtest": "^0.16.0",
"@colyseus/testing": "^0.16.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.1",
"@types/mocha": "^10.0.1",
"esbuild": "^0.25.8",
"mocha": "^10.2.0",
"tsx": "^4.10.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@colyseus/core": "^0.16.19",
"@colyseus/monitor": "^0.16.7",
"@colyseus/playground": "^0.16.4",
"@colyseus/tools": "^0.16.13",
"@colyseus/uwebsockets-transport": "^0.16.9",
"colyseus": "^0.16.0",
"cors": "^2.8.5",
"express": "^4.18.2"
}
}