-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "mediasoup-cluster",
"version": "4.1.1",
"description": "Mediasoup cluster",
"scripts": {
"build": "tsc",
"release": "standard-version",
"test": "echo \"Error: no test specified\" && exit 1",
"start:master": "cross-env PORT=3010 node dist/run_master.js",
"start:slave:producer": "cross-env PORT=3011 SLAVE_FOR=producer node dist/run_slave.js",
"start:slave:consumer": "cross-env PORT=3012 SLAVE_FOR=consumer node dist/run_slave.js",
"dev": "npm run start:master",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/woody146/mediasoup-cluster.git"
},
"author": "woody146",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/woody146/mediasoup-cluster/issues"
},
"homepage": "https://github.com/woody146/mediasoup-cluster#readme",
"files": [
"dist"
],
"keywords": [
"mediasoup",
"webrtc",
"cluster"
],
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"cross-env": "^7.0.3",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"standard-version": "^9.5.0",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=18.17.1"
},
"dependencies": {
"dotenv": "^16.1.4",
"fastify": "^4.17.0",
"mediasoup": "^3.12.3",
"node-fetch": "^3.3.1",
"pg": "^8.11.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.16"
}
}