forked from nrkno/sofie-mos-connection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 2.31 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
{
"name": "mos-connection-monorepo",
"version": "0.0.0",
"repository": "https://github.com/nrkno/tv-automation-mos-connection",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"lerna": "lerna",
"postinstall": "node scripts/update-packages.mjs",
"ci": "run build && run lint && run test",
"release:set-version": "lerna version --exact --no-changelog --no-push --yes && yarn fix-version",
"release:bump-release": "lerna version --exact --conventional-commits --conventional-graduate --tag-version-prefix='v' --no-push --force-publish='*' && yarn fix-version",
"release:bump-prerelease": "lerna version --exact --conventional-commits --conventional-prerelease --tag-version-prefix='v' --no-push --force-publish='*' && yarn fix-version",
"fix-version": "node scripts/fix-version.js",
"setup": "lerna bootstrap",
"reset": "node scripts/reset.js",
"build": "lerna run build --stream",
"build:changed": "lerna run build --since head --exclude-dependents --stream",
"lint": "lerna exec --parallel -- run -T eslint . --ext .ts,.tsx",
"lintfix": "run lint --fix",
"lint:changed": "lerna exec --since origin/master --include-dependents -- run -T eslint . --ext .js,.jsx,.ts,.tsx",
"test": "lerna run test --stream",
"test:changed": "lerna run --since origin/master --include-dependents test",
"test:coverage": "lerna run test:coverage --stream",
"lint-staged": "./node_modules/.bin/lint-staged",
"prettier": "cd $INIT_CWD && \"$PROJECT_CWD/node_modules/.bin/prettier\"",
"eslint": "cd $INIT_CWD && \"$PROJECT_CWD/node_modules/.bin/eslint\"",
"validate:dependencies": "yarn lerna exec --parallel yarn validate:dependencies && yarn license-validate",
"validate:dev-dependencies": "yarn lerna exec --parallel yarn validate:dev-dependencies",
"license-validate": "yarn sofie-licensecheck --allowPackages \"[email protected];[email protected]\""
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "2.5.1",
"@types/jest": "^29.5.2",
"deep-extend": "^0.6.0",
"glob": "^7.2.3",
"jest": "^29.5.0",
"lerna": "^6.6.2",
"lodash": "^4.17.21",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "~4.9.5"
},
"engines": {
"node": ">=14.18.0"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"packageManager": "[email protected]"
}