forked from EpicGamesExt/PixelStreamingInfrastructure
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.36 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.36 KB
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
{
"name": "pixelstreaming-infrastructure",
"workspaces": [
"Common",
"Frontend/library",
"Frontend/ui-library",
"Frontend/implementations/typescript",
"Frontend/implementations/react",
"Signalling",
"SignallingWebServer",
"SFU",
"SFU/mediasoup-sdp-bridge",
"Extras/JSStreamer",
"Extras/FrontendTests",
"Extras/MinimalStreamTester",
"Extras/SS_Test"
],
"private": true,
"scripts": {
"clean": "npm run clean --ws",
"build": "npm run build --ws",
"build:all:cjs": "cd Common && npm run build:cjs && cd ../Signalling && npm run build:cjs && cd ../SignallingWebServer && npm run build && cd ../Frontend/library && npm run build:cjs && cd ../ui-library && npm run build:cjs && cd ../implementations/typescript && npm run build:dev",
"build:all:esm": "cd Common && npm run build:esm && cd ../Signalling && npm run build:esm && cd ../SignallingWebServer && npm run build && cd ../Frontend/library && npm run build:esm && cd ../ui-library && npm run build:esm && cd ../implementations/typescript && npm run build:esm",
"pre-commit-lint": "lint-staged",
"watch-ui": "nodemon"
},
"pre-commit": [
"pre-commit-lint"
],
"devDependencies": {
"lint-staged": "^15.3.0",
"pre-commit": "^1.0.10"
}
}