forked from tv2/sisyfos-audio-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
155 lines (155 loc) · 4.51 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "sisyfos-audio-controller",
"version": "4.16.0",
"description": "Audio mixer build with the logic from a video mixer",
"license": "MIT",
"private": false,
"author": {
"name": "Kasper Olsson Hans (TV2 Denmark)",
"email": "[email protected]"
},
"contributors": [
{
"name": "Balte de Wit",
"email": "[email protected]",
"url": "https://superfly.tv"
},
{
"name": "Jan Starzak",
"email": "[email protected]",
"url": "https://superfly.tv"
}
],
"keywords": [
"app",
"audio",
"open-source"
],
"engines": {
"node": ">=8.15.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"main": "public/electron.js",
"scripts": {
"electron-release": "electron-builder -mw",
"start": "node dist/server/index.js",
"start:dev": "node --inspect dist/server/index.js",
"start:break": "node --inspect-brk dist/server/index.js",
"build-client": "yarn webpack --config webpack.config.js --mode production",
"build-server": "yarn tsc -p server/tsconfig.json",
"build-watch": "yarn tsc -p server/tsconfig.json --watch & webpack --config webpack.config.js --watch --mode development",
"build": "yarn build-server && yarn build-client",
"unit": "jest",
"test": "yarn unit",
"watch": "jest --watch",
"validate:dependencies": "yarn audit --groups dependencies && yarn license-validate",
"license-validate": "node-license-validator -p -d --allow-licenses MIT MIT/X11 BSD BSD-3-Clause BSD-2-Clause ISC Apache Apache-2.0 WTFPL CC-BY-3.0 CC-BY-4.0 CC0-1.0 Unlicense --allow-packages cycle"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*.{js,ts,css,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@tv2media/logger": "1.0.4",
"add": "^2.0.6",
"asn1": "github:evs-broadcast/node-asn1",
"bufferutil": "^4.0.3",
"casparcg-connection": "^5.1.0",
"classnames": "^2.2.6",
"emberplus-connection": "^0.0.4",
"express": "^4.17.1",
"express-csp-header": "^4.0.0",
"http": "^0.0.0",
"i18next": "^20.2.4",
"i18next-browser-languagedetector": "^6.1.1",
"jquery": "^3.6.0",
"node-emberplus": "https://github.com/olzzon/node-emberplus#feat/export-ber",
"node-vmix": "^1.5.2",
"nouislider": "^14.6.3",
"nouislider-react": "^3.4.0",
"osc": "https://github.com/olzzon/tv2-osc.js-no-serialport.git",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-draggable": "^4.4.3",
"react-i18next": "^11.8.15",
"react-redux": "^7.2.2",
"react-select": "^4.2.1",
"react-slider": "^1.1.4",
"reactjs-popup": "^2.0.4",
"redux": "^4.0.5",
"socket.io": "^4.0.0",
"socket.io-client": "^4.0.0",
"tslib": "^2.3.1",
"utf-8-validate": "^5.0.4",
"vmix-js-utils": "^4.0.7",
"web-midi-api": "^2.0.8",
"webmidi": "^2.5.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@types/classnames": "^2.2.11",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^26.0.20",
"@types/jquery": "^3.5.5",
"@types/node": "^14.14.35",
"@types/rc-slider": "^8.6.6",
"@types/react-redux": "^7.1.16",
"@types/react-select": "^4.0.13",
"@types/react-test-renderer": "^17.0.1",
"@types/socket.io-client": "^1.4.36",
"css-loader": "^5.2.4",
"electron": "^16.0.4",
"electron-builder": "^22.14.5",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"json-loader": "^0.5.7",
"lint-staged": "^10.5.4",
"node-license-validator": "^1.3.0",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react-test-renderer": "^17.0.1",
"simple-git-hooks": "^2.0.3",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.3",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.3",
"webpack": "^5.50.0",
"webpack-cli": "^4.7.2"
},
"resolutions": {
"minimist": "^1.2.5",
"css-what": "^5.0.1",
"trim-newlines": "^4.0.1",
"hosted-git-info ": "^3.0.8",
"yargs-parser": "^18.1.2",
"serialize-javascript": "^3.1.0",
"dot-prop": "^5.1.1",
"browserslist": "^4.16.5",
"ws": "^7.4.6",
"path-parse": "^1.0.7",
"ansi-regex": "^5.0.1",
"axios": "^0.21.2"
},
"build": {
"appId": "com.sisyfos-audio-controller.app",
"asar": true,
"files": [
"dist/**/*",
"public/**/*",
"!release/**/*"
],
"directories": {
"output": "release"
}
}
}