-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
99 lines (99 loc) · 3.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
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
{
"name": "sisyfos-audio-controller",
"version": "2.6.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": "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": "dist/server/index.js",
"scripts": {
"prod": "webpack --mode production --config webpack.config.js && electron --noDevServer .",
"start": "node dist/server/index.js",
"start:dev": "node --inspect 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",
"release": "standard-version",
"prepareChangelog": "standard-version --prerelease",
"watch": "jest --watch",
"validate:dependencies": "yarn audit && 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 CC0-1.0 Unlicense --allow-packages cycle"
},
"dependencies": {
"casparcg-connection": "^4.9.0",
"classnames": "^2.2.6",
"emberplus": "https://github.com/nrkno/tv-automation-emberplus-connection.git",
"express": "^4.17.1",
"express-csp-header": "^2.3.2",
"http": "^0.0.0",
"osc": "https://github.com/olzzon/tv2-osc.js-no-serialport.git",
"react": "^16.10.1",
"react-dom": "^16.10.1",
"react-redux": "^7.1.1",
"react-select": "^3.0.6",
"react-slider": "^1.0.1",
"reactjs-popup": "^1.5.0",
"redux": "^4.0.4",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"standard-version": "^7.0.1",
"web-midi-api": "^2.0.6",
"webmidi": "^2.5.1",
"winston": "^3.2.1",
"winston-elasticsearch": "^0.8.3"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^24.0.23",
"@types/rc-slider": "^8.6.5",
"@types/react-redux": "^7.1.4",
"@types/react-select": "^3.0.4",
"@types/react-test-renderer": "^16.9.1",
"@types/socket.io-client": "^1.4.32",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.2.1",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"node-license-validator": "^1.3.0",
"react-test-renderer": "^16.11.0",
"style-loader": "^1.0.1",
"ts-jest": "^24.2.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.10"
}
}