-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.81 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
{
"name": "avsrouter",
"version": "0.0.11",
"description": "Audio, Video, Screensharing router using Webtransport and Websockets as fallback",
"main": "src/server.js",
"source": "src/server.js",
"type": "module",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon -r dotenv/config src/server.js --ignore certificatecache.json --watch src/",
"dev2": "nodemon -r dotenv/config src/server.js --ignore certificatecache.json --watch src/ dotenv_config_path=.env2",
"server2": "concurrently -n w: npm:dev*",
"test": "run-s test:lint",
"test:lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fails-components/avsrouter.git"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/eslint-parser": "^7.17.0",
"concurrently": "^7.5.0",
"dotenv": "^16.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"nodemon": "^3.0.1",
"prettier": "^2.4.1"
},
"keywords": [
"audio",
"video",
"routing",
"web"
],
"author": "Marten Richter",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/fails-components/avsrouter/issues"
},
"homepage": "https://github.com/fails-components/avsrouter#readme",
"dependencies": {
"@fails-components/webtransport": "^1.1.4",
"@fails-components/webtransport-transport-http3-quiche": "^1.1.4",
"axios": "^1.7.7",
"bson": "^4.6.3",
"express": "^4.21.2",
"fancy-log": "^2.0.0",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.3.0",
"selfsigned": "^2.0.1",
"uuid": "^9.0.0"
}
}