forked from angular-eslint/angular-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.64 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
{
"name": "@angular-eslint/angular-eslint",
"private": true,
"volta": {
"node": "18.16.0",
"yarn": "1.22.19"
},
"workspaces": [
"packages/!(nx-plugin)*"
],
"contributors": [
"James Henry <angular-eslint@jameshenry.email>"
],
"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 --updateSnapshots",
"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 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",
"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": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@angular/cli": "16.0.3",
"@angular/compiler": "16.0.3",
"@commitlint/cli": "17.6.5",
"@commitlint/config-conventional": "17.6.5",
"@nx/devkit": "16.2.2",
"@nx/eslint-plugin": "16.2.2",
"@nx/jest": "16.2.2",
"@nx/js": "16.2.2",
"@nx/plugin": "16.2.2",
"@nx/workspace": "16.2.2",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@schematics/angular": "16.0.3",
"@swc-node/register": "^1.4.2",
"@swc/cli": "0.1.62",
"@swc/core": "^1.2.173",
"@swc/helpers": "0.5.1",
"@types/eslint": "8.40.0",
"@types/eslint-scope": "3.7.4",
"@types/jest": "29.4.4",
"@types/node": "18.16.16",
"@types/prettier": "2.7.3",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"env-cmd": "10.1.0",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"execa": "5.1.1",
"husky": "8.0.3",
"jest": "29.4.3",
"json-schema-to-typescript": "13.0.1",
"json-schema-traverse": "1.0.0",
"jsonc-eslint-parser": "^2.1.0",
"lerna": "7.0.0-alpha.3",
"lint-staged": "13.2.2",
"ncp": "2.0.0",
"nx": "16.2.2",
"nx-cloud": "16.0.5",
"prettier": "2.8.8",
"rimraf": "5.0.1",
"rollup": "^3.21.0",
"strip-ansi": "6.0.1",
"terser": "5.17.6",
"tree-kill": "1.2.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tslib": "^2.4.1",
"typescript": "5.0.4"
}
}