-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.84 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
{
"name": "root",
"scripts": {
"bootstrap": "lerna bootstrap && npm install",
"format": "nx format",
"format:all": "prettier --write \"packages/**/*.{js,ts,json,html}\"",
"lint": "nx run-many --target=lint --all",
"lint:affected": "nx affected --target=lint",
"lint:staged": "npx lint-staged",
"lint:commit": "npx --no -- commitlint --edit $1",
"test": "nx run-many --target=test --all",
"test:affected": "nx affected --target=test",
"test:cov": "nx run-many --target=test:cov --all && node merge-coverage.js",
"test:cov:affected": "nx affected --target=test:cov && node merge-coverage.js",
"test:coverage": "jest --ci --coverage --logHeapUsage --forceExit && node coverage-transform.js",
"test:staged": "nx run-many --target=test:staged --all",
"version": "lerna version",
"release": "npm run version && lerna publish from-package",
"publish": "lerna publish",
"repair": "lerna repair"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@nrwl/nx-cloud": "15.1.1",
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-sonarjs": "^0.16.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lerna": "^6.5.1",
"lint-staged": "^13.0.3",
"node-red": "^3.0.2",
"node-red-node-test-helper": "^0.3.0",
"nx": "15.7.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"yargs": "^17.6.2"
},
"jest": {
"preset": "ts-jest"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint"
]
}
}