forked from angular-eslint/angular-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.53 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
{
"name": "@angular-eslint/angular-eslint",
"private": true,
"volta": {
"node": "16.15.1",
"yarn": "1.22.19"
},
"workspaces": [
"packages/*"
],
"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 --target=build --all --parallel",
"test": "nx run-many --target=test --all --parallel",
"integration-tests": "nx clean integration-tests && nx spawn-and-populate-local-registry integration-tests && nx run-many --target=integration-test --all",
"update-integration-tests": "yarn integration-tests -u",
"check-clean-workspace-after-install": "git diff --quiet --exit-code",
"clean": "nx reset && lerna clean && nx run-many --target=clean --all --parallel",
"cz": "git-cz",
"postinstall": "tools/scripts/postinstall.sh",
"check-clean-integration-test-fixtures": "tools/scripts/check-clean-integration-test-fixtures.sh",
"pre-commit": "yarn lint-staged && yarn check-clean-integration-test-fixtures",
"pre-push": "yarn check-readme-rules-list && yarn format-check",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"format-check": "prettier --check \"./**/*.{ts,js,json,md}\"",
"lint": "eslint . --ext .js,.ts",
"typecheck": "nx run-many --target=typecheck --all --parallel",
"check-readme-rules-list": "nx build bundled-angular-compiler && ts-node --transpile-only --project tsconfig.tools.json tools/scripts/check-readme-rules-list.ts",
"update-readme-rules-list": "ts-node --transpile-only --project tsconfig.tools.json tools/scripts/update-readme-rules-list.ts",
"exec-tool": "ts-node --transpile-only --project tsconfig.tools.json tools/scripts/exec-tool.ts",
"update-configs": "ts-node --transpile-only --project tsconfig.tools.json tools/scripts/generate-configs.ts",
"check-rule-docs": "nx run-many --target=check-rule-docs --all --parallel",
"update-rule-docs": "nx run-many --target=update-rule-docs --all --parallel",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@actions/core": "1.8.2",
"@actions/github": "5.0.3",
"@angular/cli": "13.3.1",
"@angular/compiler": "13.3.1",
"@commitlint/cli": "17.0.2",
"@commitlint/config-conventional": "17.0.2",
"@nrwl/devkit": "14.2.4",
"@nrwl/jest": "14.2.4",
"@nrwl/nx-cloud": "14.0.8",
"@nrwl/workspace": "14.2.4",
"@schematics/angular": "13.3.1",
"@types/eslint": "8.4.3",
"@types/eslint-scope": "3.7.3",
"@types/jest": "27.4.1",
"@types/node": "16.11.39",
"@types/prettier": "2.6.3",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"env-cmd": "10.1.0",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"execa": "5.1.1",
"husky": "8.0.1",
"jest": "27.5.1",
"jest-preset-angular": "11.1.1",
"json-schema-to-typescript": "10.1.5",
"json-schema-traverse": "1.0.0",
"lerna": "5.1.1",
"lint-staged": "13.0.1",
"microbundle": "0.15.0",
"ncp": "2.0.0",
"nx": "14.2.4",
"prettier": "2.6.2",
"rimraf": "3.0.2",
"strip-ansi": "6.0.1",
"terser": "5.14.1",
"tree-kill": "1.2.2",
"ts-jest": "27.1.4",
"ts-node": "10.8.1",
"typescript": "4.7.3"
}
}