-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
50 lines (50 loc) · 1.58 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
{
"name": "xencelabs-quick-keys-packages",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "run g:husky install",
"dev": "run build && node ./scripts/watch.mjs",
"build": "run lerna exec yarn build",
"test": "run lint && run unit",
"unit": "jest",
"lint:raw": "./node_modules/.bin/eslint --ignore-pattern dist --ext .ts --ext .js ",
"lint": "run lint:raw packages",
"bump": "lerna version --exact --conventional-commits --no-push -m \"chore(release): publish %s\"",
"publish2": "lerna publish from-package",
"validate:dependencies": "yarn npm audit && run license-validate",
"license-validate": "sofie-licensecheck --allowPackages \"@xencelabs-quick-keys/webhid-demo@$(node -p \"require('./lerna.json').version\");[email protected]\"",
"g:tsc": "cd $INIT_CWD && tsc",
"g:rimraf": "cd $INIT_CWD && rimraf",
"g:husky": "./node_modules/.bin/husky",
"g:lint-staged": "./node_modules/.bin/lint-staged"
},
"lint-staged": {
"*.{css,json,md,scss}": [
"prettier --write"
],
"*.{ts,js}": [
"yarn lint:raw --fix"
]
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "~2.5.2",
"@types/jest": "^29.5.10",
"@types/node": "^18.18.14",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"lerna": "^8.0.0",
"open-cli": "^7.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.3.2"
},
"workspaces": [
"packages/core",
"packages/node",
"packages/webhid",
"packages/webhid-demo"
],
"packageManager": "[email protected]"
}