forked from nrkno/sofie-package-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 3.68 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
{
"name": "package-manager-monorepo",
"version": "1.0.0",
"repository": "https://github.com/nrkno/tv-automation-package-manager",
"private": true,
"workspaces": [
"shared/**",
"apps/**",
"tests/**"
],
"scripts": {
"prepare": "husky install",
"ci": "yarn install && yarn build && yarn lint && yarn test",
"release:bump-release": "lerna version --conventional-commits --conventional-graduate --exact --no-push",
"release:bump-prerelease": "lerna version --conventional-commits --conventional-prerelease --exact --no-push",
"set-version": "lerna version --exact --no-changelog --no-git-tag-version --no-push --yes",
"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 --no-bail -- eslint . --ext .ts,.tsx",
"lintfix": "yarn lint --fix",
"lint:changed": "lerna exec --since origin/master --include-dependents -- eslint . --ext .js,.jsx,.ts,.tsx",
"test": "lerna run test --stream",
"test:ci": "lerna run test --stream",
"test:changed": "lerna run --since origin/master --include-dependents test",
"test:update": "lerna run test -- -u",
"test:update:changed": "lerna run --since origin/master --include-dependents test -- -u",
"typecheck": "lerna exec -- tsc --noEmit",
"typecheck:changed": "lerna exec --since origin/master --include-dependents -- tsc --noEmit",
"build-win32": "node scripts/prepare-for-build32.js && lerna run build-win32 --stream && node scripts/cleanup-after-build32.mjs",
"build-win32:ci": "node scripts/prepare-for-build32.js && lerna run build-win32 --stream --concurrency=1 && node scripts/cleanup-after-build32.mjs",
"gather-built": "node scripts/gather-all-built.mjs",
"sign-executables": "node scripts/sign-executables.mjs",
"start:http-server": "lerna run start --stream --scope @http-server/app",
"start:workforce": "lerna run start --stream --scope @workforce/app",
"start:package-manager": "lerna run start --stream --scope @package-manager/app",
"start:worker": "lerna run start --stream --scope @worker/app",
"start:single-app": "lerna run start --stream --scope @single-app/app",
"postinstall": "node scripts/update-packages.js",
"do:build-win32": "yarn install && yarn build && yarn build-win32 && yarn gather-built",
"do:build-win32:ci": "yarn install && yarn build && yarn build-win32:ci && yarn gather-built",
"verify:build-win32": "node scripts/verify-build-win32.mjs",
"precommit": "lint-staged"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "~2.3",
"@types/jest": "^29.2.5",
"deep-extend": "^0.6.0",
"find": "^0.3.0",
"fs-extra": "^11.1.0",
"glob": "^8.1.0",
"jest": "^29.3.1",
"lerna": "^3.22.1",
"mkdirp": "^2.1.3",
"pkg": "^5.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "~4.9",
"underscore": "^1.13.6"
},
"resolutions": {
"**/data-store/set-value": "^4.1.0"
},
"engines": {
"node": ">=12.11.0"
},
"dependencies": {
"@sofie-automation/server-core-integration": "1.49.0-nightly-release49-20230320-092423-1ce67e8.0"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{js,css,json,md,scss,yml,yaml}": [
"prettier"
],
"*.{ts,tsx}": [
"eslint"
]
}
}