-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Changed logger from winston to tv2 mediatech logger.
- Loading branch information
1 parent
d9975b2
commit ab20456
Showing
23 changed files
with
412 additions
and
643 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,139 +1,139 @@ | ||
{ | ||
"name": "sisyfos-audio-controller", | ||
"version": "4.13.2", | ||
"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": "dist/server/index.js", | ||
"scripts": { | ||
"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": { | ||
"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", | ||
"utf-8-validate": "^5.0.4", | ||
"vmix-js-utils": "^4.0.7", | ||
"web-midi-api": "^2.0.8", | ||
"webmidi": "^2.5.2", | ||
"winston": "^3.3.3" | ||
}, | ||
"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", | ||
"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" | ||
} | ||
} | ||
{ | ||
"name": "sisyfos-audio-controller", | ||
"version": "4.13.2", | ||
"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": "dist/server/index.js", | ||
"scripts": { | ||
"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", | ||
"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", | ||
"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" | ||
} | ||
} |
Oops, something went wrong.