-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
74 lines (74 loc) · 2.21 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "jitsi-autoscaler",
"version": "1.0.0",
"description": "Implements Autoscaling for Jitsi Services",
"repository": {
"type": "git",
"url": "https://github.com/jitsi/jitsi-autoscaler"
},
"main": "src/index.js",
"private": true,
"engines": {
"node": ">=20"
},
"dependencies": {
"@types/shortid": "0.0.31",
"@types/sshpk": "^1.17.3",
"bee-queue": "^1.6.0",
"dotenv": "^16.3.1",
"dots-wrapper": "^3.11.3",
"envalid": "^8.0.0",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-unless": "^2.1.3",
"express-validator": "^7.0.1",
"got": "^11.8.6",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"node-cache": "^5.1.2",
"oci-sdk": "^1.5.2",
"prom-client": "^15.0.0",
"redis": "^3.1.2",
"redlock": "^4.2.0",
"sha256": "^0.2.0",
"shortid": "^2.2.15",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/express": "^4.17.20",
"@types/express-jwt": "6.0.4",
"@types/ioredis": "^4.28.10",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^20.8.10",
"@types/node-cache": "^4.2.5",
"@types/node-fetch": "^2.6.8",
"@types/redis": "^2.8.32",
"@types/redlock": "^4.0.6",
"@types/sha256": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"concurrently": "^8.2.2",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"glob": "^10.3.10",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"test": "glob -c \"node --test --require ts-node/register\" \"src/test/**/*.ts\"",
"watch": "concurrently -k -p \"[{name}]\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-ts": "tsc -w",
"watch-node": "nodemon dist/app.js",
"watch-test": "glob -c \"node --test --watch --require ts-node/register\" \"src/test/**/*.ts\"",
"lint": "npx eslint . --ext .ts,.tsx --fix",
"build": "npm run lint && tsc",
"start-debug": "node --inspect=0.0.0.0:9229 dist/app.js",
"start-profile": "node --prof dist/app.js",
"start": "node dist/app.js"
},
"author": "Jitsi",
"license": "Apache-2.0"
}