-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 4.46 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@angular-eslint/angular-eslint",
"private": true,
"description": "The tooling which enables ESLint to work with Angular projects",
"volta": {
"node": "20.17.0"
},
"packageManager": "[email protected]",
"contributors": [
"James Henry <[email protected]>"
],
"license": "MIT",
"repository": "angular-eslint/angular-eslint",
"bugs": {
"url": "https://github.com/angular-eslint/angular-eslint/issues"
},
"scripts": {
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"e2e": "nx e2e e2e",
"update-e2e-snapshots": "nx e2e e2e --updateSnapshot",
"check-clean-workspace-after-install": "git diff --quiet --exit-code",
"cz": "git-cz",
"postinstall": "node tools/scripts/postinstall.js",
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm format-check",
"format": "node node_modules/prettier/bin/prettier.cjs --write \"./**/*.{ts,js,json,md}\"",
"format-check": "node node_modules/prettier/bin/prettier.cjs --check \"./**/*.{ts,js,json,md}\"",
"lint": "nx run-many -t lint",
"typecheck": "nx run-many -t typecheck",
"typecheck-workspace": "tsc -b --pretty --verbose",
"release": "tsx tools/scripts/release.ts",
"check-rule-docs": "nx run-many -t check-rule-docs",
"update-rule-docs": "nx run-many -t update-rule-docs",
"check-rule-lists": "nx run-many -t check-rule-lists",
"update-rule-lists": "nx run-many -t update-rule-lists",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@angular/cli": "18.1.4",
"@angular/compiler": "18.2.1",
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@nx/devkit": "19.6.4",
"@nx/eslint": "19.6.4",
"@nx/eslint-plugin": "19.6.4",
"@nx/jest": "19.6.4",
"@nx/js": "19.6.4",
"@nx/plugin": "19.6.4",
"@nx/workspace": "19.6.4",
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@schematics/angular": "18.1.4",
"@swc-node/register": "1.10.9",
"@swc/cli": "0.4.0",
"@swc/core": "1.7.18",
"@swc/helpers": "0.5.12",
"@types/eslint": "9.6.1",
"@types/eslint-scope": "3.7.7",
"@types/jest": "29.5.12",
"@types/node": "20.16.1",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.33",
"@typescript-eslint/rule-tester": "8.2.0",
"chalk": "4.1.2",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"env-cmd": "10.1.0",
"eslint": "9.9.1",
"eslint-config-prettier": "9.1.0",
"execa": "5.1.1",
"husky": "9.1.5",
"jest": "29.7.0",
"json-schema-to-typescript": "15.0.1",
"json-schema-traverse": "1.0.0",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "15.2.9",
"ncp": "2.0.0",
"nx": "19.6.4",
"prettier": "3.3.3",
"prettier-v2-for-jest-inline-snapshots": "npm:prettier@^2",
"rimraf": "5.0.10",
"rollup": "^4.0.0",
"semver": "^7.6.2",
"strip-ansi": "6.0.1",
"tree-kill": "1.2.2",
"ts-jest": "29.2.4",
"tslib": "^2.4.1",
"tsx": "^4.7.3",
"typescript": "5.5.4",
"typescript-eslint": "8.2.0",
"verdaccio": "5.32.1",
"yargs": "17.7.2"
},
"pnpm": {
"overrides": {
"@typescript-eslint/parser": "$typescript-eslint",
"@typescript-eslint/rule-tester": "$typescript-eslint",
"@typescript-eslint/utils": "$typescript-eslint"
},
"patchedDependencies": {
"@typescript-eslint/[email protected]": "tools/patches/@[email protected]"
}
},
"nx": {
"targets": {
"check-rule-configs": {
"dependsOn": [
"update-rule-configs"
],
"command": "git diff --quiet --exit-code -- packages/angular-eslint/src/configs packages/eslint-plugin/src/configs packages/eslint-plugin-template/src/configs || (echo \"\n-------\n\nCHECK RULE CONFIGS ERROR: You have uncommitted changes to the generated rule configs.\n\nYou should run `pnpm update-rule-configs` and commit the result.\n\n-------\n\" && exit 1)"
},
"update-rule-configs": {
"dependsOn": [
"^build"
],
"outputs": [
"{projectRoot}/configs"
],
"command": "tsx tools/scripts/generate-configs.ts"
}
},
"includedScripts": []
}
}