-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
46
{
"name": "@radixdlt/signaling-server",
"version": "0.1.0",
"description": "WebRTC signaling server",
"main": "index.js",
"scripts": {
"start": "NODE_PATH=./build node build/server.js",
"start:clinic": "NODE_PATH=./build yarn build && clinic doctor -- node build/server.js",
"build": "tsc -p .",
"dev": "nodemon src/server.ts",
"test": "mocha -r ts-node/register 'src/**/*.test.ts'",
"test:watch": "mocha -r ts-node/register --watch --watch-files src 'src/**/*.test.ts'",
"lint": "yarn prettier --write src"
},
"author": "Alex Stelea <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.2",
"@types/prometheus-gc-stats": "^0.6.2",
"@types/sinon": "^10.0.13",
"@types/ws": "^8.5.3",
"chai": "^4.3.6",
"clinic": "^11.1.2",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"ws": "^8.8.1"
},
"dependencies": {
"@redis/client": "^1.2.0",
"@types/uuid": "^8.3.4",
"dotenv": "^16.0.1",
"neverthrow": "^5.0.0",
"prom-client": "^14.0.1",
"prometheus-gc-stats": "^0.6.3",
"rxjs": "^7.5.6",
"tslog": "^4.8.2",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.10.0",
"zod": "^3.17.10"
}
}