-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "jitsi-autoscaler-sidecar",
"version": "1.0.0",
"description": "Sidecar service to jitsi-autoscaler",
"repository": {
"type": "git",
"url": "https://github.com/jitsi/jitsi-autoscaler-sidecar"
},
"main": "src/index.js",
"private": true,
"engines": {
"node": ">=10"
},
"dependencies": {
"@types/express": "^4.17.7",
"@types/got": "^9.6.11",
"@types/jsonwebtoken": "^8.5.0",
"dotenv": "^8.2.0",
"envalid": "^6.0.2",
"express": "^4.17.1",
"got": "^11.5.1",
"jsonwebtoken": "^8.5.1",
"node-cache": "^5.1.2",
"typescript": "^3.9.7",
"util": "^0.12.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@jitsi/eslint-config": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"concurrently": "^5.2.0",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.4"
},
"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": "tsc",
"start": "node dist/app.js",
"jwt": "node dist/jwt.js"
},
"author": "Jitsi",
"license": "Apache-2.0"
}