This repository has been archived by the owner on Apr 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "@digitalstage/server",
"version": "0.0.1",
"description": "Stage and device orchestration server for digital-stage.org",
"main": "index.js",
"scripts": {
"dev": "DEBUG=server.* nodemon --watch './src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "npx eslint ./src --ext .js,.ts --fix",
"build": "tsc",
"start": "DEBUG=server.* node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digital-stage/server.git"
},
"keywords": [
"video",
"realtime",
"mediasoup",
"node"
],
"author": "Tobias Hegemann <tobias.hegemann@googlemail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/digital-stage/server/issues"
},
"homepage": "https://github.com/digital-stage/server#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/ioredis": "^4.22.0",
"@types/ip": "^1.1.0",
"@types/lodash": "^4.14.168",
"@types/mongodb": "^3.6.9",
"@types/node": "^14.14.32",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@sentry/integrations": "^6.2.1",
"@sentry/node": "^6.2.1",
"@sentry/tracing": "^6.2.1",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"ioredis": "^4.23.0",
"ip": "^1.1.5",
"lodash": "^4.17.21",
"mongodb": "^3.6.4",
"node": "^15.10.0",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"teckos": "0.2.3",
"uncaught": "^0.0.5"
}
}