This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.62 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
{
"name": "mediakitchen-root",
"version": "1.0.0",
"description": "Clustered Mediasoup server (Monorepo)",
"main": "dist/index.js",
"repository": "https://github.com/openland/mediakitchen.git",
"author": "Steve Korshakov <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"clean": "lerna run clean",
"build": "lerna run clean && tsc -p ./packages/mediakitchen-common/tsconfig.build.json && tsc -p ./packages/mediakitchen/tsconfig.build.json && tsc -p ./packages/mediakitchen-server/tsconfig.build.json",
"release:client": "yarn build && cd packages/mediakitchen && yarn publish --no-git-tag-version",
"release:common": "yarn build && cd packages/mediakitchen-common && yarn publish --no-git-tag-version",
"release:server": "yarn build && cd packages/mediakitchen-server && yarn publish --no-git-tag-version",
"bootstrap": "lerna bootstrap --hoist",
"start": "yarn build && node ./mediakitchen-server/dist/server.js",
"postinstall": "yarn bootstrap"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/debug": "^4.1.5",
"@types/jest": "25.2.1",
"@types/node": "13.9.8",
"babel-jest": "^26.6.3",
"jest": "26.6.3",
"lerna": "3.20.2",
"mediasoup": "3.7.1",
"typescript": "3.8.3"
},
"peerDependencies": {
"mediasoup": "*"
},
"dependencies": {
"change-case": "^4.1.1",
"debug": "^4.1.1",
"fp-ts": "^2.5.3",
"io-ts": "^2.1.3",
"public-ip": "^4.0.1",
"ts-nats": "^1.2.12"
}
}