-
Notifications
You must be signed in to change notification settings - Fork 3k
/
package.json
60 lines (59 loc) · 1.38 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
56
57
58
59
{
"private": true,
"workspaces": {
"packages": [
"packages/*",
"apps/rxjs.dev"
],
"nohoist": [
"**/@types/jasmine",
"**/@types/jasminewd2",
"**/@types/mocha",
"**/core-js"
]
},
"license": "Apache-2.0",
"engines": {
"node": "^18.13.0 || ^20.9.0"
},
"packageManager": "[email protected]",
"scripts": {
"prepare-packages": "yarn nx test @rxjs/observable && yarn nx run-many -t build,lint,test:circular,dtslint,copy_common_package_files --exclude rxjs.dev",
"release": "node scripts/release.js"
},
"devDependencies": {
"@nx/eslint-plugin": "17.3.2",
"@nx/js": "17.3.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"cz-conventional-changelog": "1.2.0",
"eslint": "^8.56.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nx": "17.3.2",
"ts-node": "^10.9.2",
"tshy": "^1.11.0",
"typescript": "~5.3.3",
"validate-commit-msg": "2.14.0",
"vitest": "^1.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "validate-commit-msg"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"(src|spec)/**/*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{js,css,md}": "prettier --write"
}
}