-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.89 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
{
"name": "xkeys-monorepo",
"version": "0.0.0",
"repository": "https://github.com/SuperFlyTV/xkeys",
"private": true,
"author": "Johan Nyman <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build --stream",
"build:core": "yarn build --scope=@xkeys-lib/core",
"lint:raw": "lerna exec --stream -- eslint --ext .ts --ext .js --ext .tsx --ext .jsx --ignore-pattern dist",
"lint": "yarn lint:raw .",
"lintfix": "yarn lint --fix",
"test": "lerna run test --stream",
"typecheck": "lerna exec -- tsc --noEmit",
"cov": "jest --coverage; 0 coverage/lcov-report/index.html",
"cov-open": "open-cli coverage/lcov-report/index.html",
"send-coverage": "jest && codecov",
"release:bump-release": "lerna version --exact --conventional-commits --conventional-graduate --no-push",
"release:bump-prerelease": "lerna version --exact --conventional-commits --conventional-prerelease --no-push",
"build-record-test": "cd packages/node-record-test && yarn build-record-test",
"lerna:version": "lerna version --exact",
"lerna:publish": "lerna publish",
"lerna": "lerna"
},
"devDependencies": {
"@sofie-automation/code-standard-preset": "^2.5.2",
"@types/jest": "^26.0.20",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"typescript": "~4.5",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.2"
},
"prettier": "@sofie-automation/code-standard-preset/.prettierrc.json",
"lint-staged": {
"*.{js,css,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx}": [
"yarn lint --fix"
]
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}