forked from Julusian/node-loupedeck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.53 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": "loupedeck-packages",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@sofie-automation/code-standard-preset": "^2.4.1",
"@types/node": "^16.11.64",
"concurrently": "^8.0.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"husky": "^8.0.3",
"lerna": "^6.6.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.3"
},
"scripts": {
"prepare": "husky install",
"dev": "yarn build && node ./scripts/watch.mjs",
"postinstall": "lerna bootstrap",
"build": "yarn lerna exec yarn build",
"test": "yarn lint && yarn unit",
"unit": "jest",
"lint:raw": "eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint": "yarn lint:raw packages",
"lint-fix": "yarn lint --fix",
"bump": "lerna version --exact --conventional-commits --no-push -m \"chore(release): publish %s\"",
"graduate": "yarn bump --conventional-graduate",
"publish2": "yarn build && lerna publish from-package --pre-dist-tag next",
"validate:dependencies": "yarn audit && yarn license-validate",
"license-validate": "yarn sofie-licensecheck --allowPackages \"@loupedeck/web-demo@$(node -p \"require('./packages/web-demo/package.json').version\");[email protected]\""
},
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx,js,jsx}": [
"yarn lint:raw --fix"
]
}
}