-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.74 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
{
"name": "sofie-demo-blueprints",
"version": "0.4.0",
"repository": "https://github.com/superflytv/sofie-demo-blueprints/",
"license": "MIT",
"files": [],
"scripts": {
"prepare": "husky install",
"validate:dependencies": "yarn audit && yarn license-validate",
"license-validate": "yarn sofie-licensecheck --allowPackages \"[email protected]\"",
"build:blueprints": "lerna run build-now --scope=blueprints",
"watch:blueprints": "lerna run watch-sync-local --scope=blueprints",
"test:blueprints": "lerna run test --scope=blueprints",
"build:docs": "lerna run build --scope=docs",
"watch:docs": "lerna run start --scope=docs",
"lint:raw": "eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"packages/blueprints/**/*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix --parser-options=project:\"./packages/blueprints/tsconfig.json\""
],
"packages/docs/**/*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix --parser-options=project:\"./packages/docs/tsconfig.json\""
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@sofie-automation/code-standard-preset": "^2.1.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^6.0.1"
},
"workspaces": [
"packages/*"
],
"private": true,
"engines": {
"node": ">=16.14"
}
}