-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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
47
48
49
50
51
52
{
"name": "signal-sidecar",
"version": "0.3.2",
"description": "health report sidecar service for jitsi signal nodes",
"repository": {
"type": "git",
"url": "https://github.com/jitsi/signal-sidecar"
},
"main": "src/index.js",
"engines": {
"node": ">=16"
},
"dependencies": {
"consul": "aaronkvanmeerten/node-consul",
"dotenv": "^8.6.0",
"envalid": "^6.0.2",
"express": "^4.17.1",
"got": "^11.5.1",
"jsonwebtoken": "^8.5.1",
"node-cache": "^5.1.2",
"prom-client": "^12.0.0",
"util": "^0.12.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/consul": "^0.40.0",
"@types/express": "^4.17.7",
"@types/got": "^9.6.11",
"@types/jsonwebtoken": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.0.0",
"concurrently": "^5.2.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "concurrently -k -p \"[{name}]\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/app.js",
"lint": "npx eslint . --ext .ts,.tsx --fix",
"build": "npm run lint && tsc",
"start": "node dist/app.js",
"jwt": "node dist/jwt.js"
},
"author": "Jitsi",
"license": "Apache-2.0"
}