-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit from GitHub Actions (Prod Node CI)
- Loading branch information
1 parent
94a605c
commit 663adcf
Showing
2 changed files
with
94 additions
and
86 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
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,86 +1,86 @@ | ||
{ | ||
"name": "sisyfos-audio-controller", | ||
"version": "4.18.0", | ||
"description": "Audio mixer build with the logic from a video mixer", | ||
"license": "MIT", | ||
"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" | ||
}, | ||
{ | ||
"name": "Anders Frederik Jørgensen", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"app", | ||
"audio", | ||
"open-source" | ||
], | ||
"engines": { | ||
"node": ">=18.15.0", | ||
"yarn": ">=1.22.0" | ||
}, | ||
"private": true, | ||
"workspaces": [ | ||
"client", | ||
"server", | ||
"shared", | ||
"desktop" | ||
], | ||
"scripts": { | ||
"start": "cross-env NODE_ENV=production node server/dist/server", | ||
"start:dev": "cross-env NODE_ENV=development node --inspect server/dist/server", | ||
"start:local": "cross-env NODE_ENV=local node --inspect server/dist/server", | ||
"build": "yarn build:client && yarn build:server", | ||
"build:client": "yarn --cwd ./client build", | ||
"build:server": "yarn --cwd ./server build", | ||
"build:desktop": "yarn --cwd ./desktop build", | ||
"watch": "concurrently --kill-others \"yarn watch:server\" \"yarn watch:client\"", | ||
"watch:client": "yarn --cwd ./client watch", | ||
"watch:server": "yarn --cwd ./server watch", | ||
"test": "yarn test:client && yarn test:server", | ||
"test:client": "yarn --cwd ./client test", | ||
"test:server": "yarn --cwd ./server test", | ||
"test:watch": "concurrently --kill-others \"yarn --cwd ./client test:watch\" \"yarn --cwd ./server test:watch\"", | ||
"lint": "prettier --write", | ||
"validate": "yarn validate:dependencies && yarn validate:license", | ||
"validate:dependencies": "yarn audit --groups dependencies", | ||
"validate:license": "node-license-validator -p -d --allow-licenses MIT MIT/X11 BSD 0BSD BSD-3-Clause BSD-2-Clause ISC Apache Apache-2.0 WTFPL CC-BY-3.0 CC-BY-4.0 CC0-1.0 GPL Python-2.0 Unlicense --allow-packages cycle", | ||
"clean": "rimraf **/dist **/release", | ||
"reset": "yarn clean && rimraf **/node_modules node_modules" | ||
}, | ||
"simple-git-hooks": { | ||
"pre-commit": "yarn lint-staged" | ||
}, | ||
"lint-staged": { | ||
"*.{js,ts,css,json,md}": [ | ||
"prettier --write" | ||
] | ||
}, | ||
"dependencies": { | ||
"cross-env": "^7.0.3" | ||
}, | ||
"devDependencies": { | ||
"concurrently": "^8.0.1", | ||
"lint-staged": "^13.2.2", | ||
"node-license-validator": "^1.3.2", | ||
"prettier": "^2.8.8", | ||
"rimraf": "^5.0.0" | ||
}, | ||
"resolutions": { | ||
"xml2js": "^0.5.0", | ||
"socket.io-parser": "^4.2.3" | ||
} | ||
} | ||
{ | ||
"name": "sisyfos-audio-controller", | ||
"version": "4.18.1", | ||
"description": "Audio mixer build with the logic from a video mixer", | ||
"license": "MIT", | ||
"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" | ||
}, | ||
{ | ||
"name": "Anders Frederik Jørgensen", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"keywords": [ | ||
"app", | ||
"audio", | ||
"open-source" | ||
], | ||
"engines": { | ||
"node": ">=18.15.0", | ||
"yarn": ">=1.22.0" | ||
}, | ||
"private": true, | ||
"workspaces": [ | ||
"client", | ||
"server", | ||
"shared", | ||
"desktop" | ||
], | ||
"scripts": { | ||
"start": "cross-env NODE_ENV=production node server/dist/server", | ||
"start:dev": "cross-env NODE_ENV=development node --inspect server/dist/server", | ||
"start:local": "cross-env NODE_ENV=local node --inspect server/dist/server", | ||
"build": "yarn build:client && yarn build:server", | ||
"build:client": "yarn --cwd ./client build", | ||
"build:server": "yarn --cwd ./server build", | ||
"build:desktop": "yarn --cwd ./desktop build", | ||
"watch": "concurrently --kill-others \"yarn watch:server\" \"yarn watch:client\"", | ||
"watch:client": "yarn --cwd ./client watch", | ||
"watch:server": "yarn --cwd ./server watch", | ||
"test": "yarn test:client && yarn test:server", | ||
"test:client": "yarn --cwd ./client test", | ||
"test:server": "yarn --cwd ./server test", | ||
"test:watch": "concurrently --kill-others \"yarn --cwd ./client test:watch\" \"yarn --cwd ./server test:watch\"", | ||
"lint": "prettier --write", | ||
"validate": "yarn validate:dependencies && yarn validate:license", | ||
"validate:dependencies": "yarn audit --groups dependencies", | ||
"validate:license": "node-license-validator -p -d --allow-licenses MIT MIT/X11 BSD 0BSD BSD-3-Clause BSD-2-Clause ISC Apache Apache-2.0 WTFPL CC-BY-3.0 CC-BY-4.0 CC0-1.0 GPL Python-2.0 Unlicense --allow-packages cycle", | ||
"clean": "rimraf **/dist **/release", | ||
"reset": "yarn clean && rimraf **/node_modules node_modules" | ||
}, | ||
"simple-git-hooks": { | ||
"pre-commit": "yarn lint-staged" | ||
}, | ||
"lint-staged": { | ||
"*.{js,ts,css,json,md}": [ | ||
"prettier --write" | ||
] | ||
}, | ||
"dependencies": { | ||
"cross-env": "^7.0.3" | ||
}, | ||
"devDependencies": { | ||
"concurrently": "^8.0.1", | ||
"lint-staged": "^13.2.2", | ||
"node-license-validator": "^1.3.2", | ||
"prettier": "^2.8.8", | ||
"rimraf": "^5.0.0" | ||
}, | ||
"resolutions": { | ||
"xml2js": "^0.5.0", | ||
"socket.io-parser": "^4.2.3" | ||
} | ||
} |