forked from fippo/rtcstats-server
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "rtcstats-server",
"version": "2.25.4",
"description": "The rtcstats-server represents the server side component of the rtcstats ecosystem, the client side being https://github.com/jitsi/rtcstats which collects and sends WebRTC related statistics.",
"main": "websocket.js",
"private": true,
"scripts": {
"lint:fix": "eslint --fix ./src/",
"lint": "eslint ./src/",
"integration": "node ./src/test/client.js",
"test": "NODE_ENV=production jest",
"test:fix": "jest ./src/test/jest/extract.test.js -- --fix",
"start": "NODE_ENV=production node ./src/app.js",
"watch:dev": "nodemon --exec 'NODE_ENV=debug node ./src/app.js'",
"debug": "NODE_ENV=debug node ./src/app.js",
"ndb-debug": "NODE_ENV=debug ndb ./src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jitsi/rtcstats-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jitsi/rtcstats-server/issues"
},
"homepage": "https://github.com/jitsi/rtcstats-server#readme",
"dependencies": {
"amplitude": "^4.0.1",
"aws-sdk": "^2.441.0",
"axios": "^1.2.0",
"config": "^1.17.1",
"dynamoose": "^2.5.0",
"get-folder-size": "^2.0.1",
"JSONStream": "^1.3.5",
"jsonwebtoken": "^8.5.1",
"object-sizeof": "^1.6.1",
"platform": "^1.3.6",
"prom-client": "^11.3.0",
"sdp": "^3.0.3",
"ua-parser-js": "^1.0.36",
"uuid": "^8.3.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2",
"ws": "^8.6.0"
},
"devDependencies": {
"@jitsi/eslint-config": "^4.0.0",
"eslint-plugin-import": "^2.25.3",
"jest": "^28.0.1",
"line-by-line": "^0.1.6",
"nodemon": "^2.0.2"
},
"keywords": []
}