-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 2.11 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
{
"name": "jitsi-component-selector",
"version": "1.0.0",
"description": "Selector Service for Jitsi components",
"main": "index.js",
"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 && webpack",
"start": "node bundle/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jitsi/jitsi-component-selector.git"
},
"keywords": [],
"author": "Jitsi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jitsi/jitsi-component-selector/issues"
},
"homepage": "https://github.com/jitsi/jitsi-component-selector#readme",
"devDependencies": {
"@jitsi/eslint-config": "^4.1.1",
"@types/express": "^4.17.1",
"@types/express-jwt": "0.0.42",
"@types/ioredis": "^4.28.7",
"@types/jsonwebtoken": "^8.5.0",
"@types/node-cache": "^4.2.5",
"@types/sha256": "^0.2.0",
"@types/shortid": "^0.0.29",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"babel-eslint": "^10.1.0",
"bufferutil": "^4.0.6",
"eslint": "^8.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-react": "^7.28.0",
"express-jwt": "^6.1.0",
"shortid": "^2.2.15",
"typescript": "^4.5.4",
"utf-8-validate": "^5.0.9",
"uuid": "^8.3.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"winston": "^3.3.3"
},
"dependencies": {
"@jitsi/logger": "^2.0.1",
"@socket.io/redis-adapter": "^7.1.0",
"envalid": "^6.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.6.1",
"got": "^11.5.1",
"ioredis": "^4.28.3",
"jsonwebtoken": "^8.5.1",
"node-cache": "^5.1.2",
"prom-client": "^14.0.1",
"redis": "^4.0.2",
"sha256": "^0.2.0",
"socket.io": "^4.4.1"
}
}