-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
62 lines (62 loc) · 2.16 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
{
"name": "superconductor-monorepo",
"version": "0.1.0",
"author": {
"name": "SuperFlyTV AB",
"email": "[email protected]",
"url": "https://superfly.tv"
},
"repository": "https://github.com/SuperFlyTV/SuperConductor",
"private": true,
"engines": {
"node": "^16.16.0 || 18"
},
"workspaces": [
"shared/**",
"apps/**",
"tests/**"
],
"scripts": {
"version": "node scripts/version.js",
"prepare": "husky install",
"lerna": "lerna",
"lint": "lerna exec -- eslint . --ext .js,.jsx,.ts,.tsx",
"lintfix": "yarn lint --fix",
"lint:changed": "lerna exec --since head --include-dependents -- eslint . --ext .js,.jsx,.ts,.tsx",
"build": "lerna run build",
"build:binary": "lerna run build:binary",
"build:shared": "lerna run build --stream --scope=@shared/*",
"build:shared:changed": "lerna run build --stream --scope=@shared/* --since head --exclude-dependents --stream",
"start": "yarn && yarn build:shared && yarn dev:electron",
"start:all": "yarn build:shared && lerna run dev --stream",
"start:bridge": "yarn build:shared && lerna run dev:bridge --stream",
"dev:electron": "lerna run dev --stream --scope=superconductor",
"dev:bridge": "lerna run dev --stream --scope=tsr-bridge",
"test": "lerna run test",
"license-validate": "node scripts/license-check.js",
"release:bump": "lerna version --force-publish --no-push",
"release:prerelease": "lerna version prerelease --force-publish --no-push",
"release:preminor": "lerna version preminor --force-publish --no-push"
},
"resolutions": {
"prebuild-install": "^7.0.0",
"threadedclass": "^1.2.1",
"node-hid": "github:julusian/node-hid#v2.1.2-1",
"casparcg-state": "2.1.2",
"serialport": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "^2.2.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.9",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"lerna": "^6.0.3",
"nexe": "^4.0.0-rc.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"typescript": "^4.8.4"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json"
}