-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 4.18 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
{
"name": "eslint-config-ai",
"version": "3.6.5",
"description": "Opinionated set of ESLint shareable configs by Alex Ilyaev",
"main": "index.js",
"scripts": {
"prepare": "husky",
"postpublish": "git push --follow-tags",
"lint-eslint": "eslint --max-warnings 0 '**/*.{js,cjs,ts,mts,tsx}'",
"lint-eslint-deprecated-rules": "ESLINT_CONFIG_PRETTIER_NO_DEPRECATED=1 eslint-find-rules --no-error --deprecated all.js",
"lint-eslint-config-prettier": "npx eslint-config-prettier index.js",
"lint-eslint-debug": "DEBUG=eslint:cli-engine pnpm lint-eslint",
"lint-eslint-summary": "pnpm lint-eslint -f summary",
"lint-eslint-print-config": "eslint --print-config temp.ts",
"lint-prettier": "prettier --check '**/*.{js,cjs,ts,mts,tsx,html,css,json,md}'",
"lint": "pnpm lint-eslint && pnpm lint-prettier && pnpm lint-eslint-config-prettier && pnpm lint-eslint-deprecated-rules",
"format-eslint": "eslint --fix '**/*.{js,cjs,ts,mts,tsx}'",
"format-prettier": "prettier --write '**/*.{js,cjs,ts,mts,tsx,html,css,json,md}'",
"format": "pnpm format-eslint && pnpm format-prettier",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@alexilyaev/browserslist-config": "0.1.3",
"@alexilyaev/configs": "0.4.2",
"@stylistic/eslint-plugin": "2.9.0",
"@total-typescript/ts-reset": "0.6.1",
"@types/eslint": "8.56.2",
"@types/node": "20",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-find-rules": "4.2.0",
"eslint-gitignore": "0.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-compat": "4.2.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-jsdoc": "46.9.1",
"eslint-plugin-jsx-a11y": "6.10.1",
"eslint-plugin-lodash": "7.4.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-unicorn": "50.0.1",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"lodash": "4.17.21",
"prettier": "3.3.3",
"typescript": "5.6.3"
},
"peerDependencies": {
"@stylistic/eslint-plugin": ">=1.5.0",
"@typescript-eslint/eslint-plugin": ">=6.19.0",
"@typescript-eslint/parser": ">=6.19.0",
"eslint": ">=8.56.0",
"eslint-config-prettier": ">=6.11.0",
"eslint-import-resolver-typescript": ">=3.6.0",
"eslint-plugin-compat": ">=4.2.0",
"eslint-plugin-eslint-comments": ">=3.2.0",
"eslint-plugin-import": ">=2.29.0",
"eslint-plugin-jest": ">=27.6.0",
"eslint-plugin-jsdoc": ">=46.9.0",
"eslint-plugin-jsx-a11y": ">=6.8.0",
"eslint-plugin-lodash": ">=7.4.0",
"eslint-plugin-promise": ">=6.1.0",
"eslint-plugin-react": ">=7.33.0",
"eslint-plugin-react-hooks": ">=5.0.0",
"eslint-plugin-unicorn": ">=50.0.0",
"prettier": ">=3.0.0",
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"eslint-import-resolver-typescript": {
"optional": true
},
"eslint-plugin-compat": {
"optional": true
},
"eslint-plugin-eslint-comments": {
"optional": true
},
"eslint-plugin-import": {
"optional": true
},
"eslint-plugin-jest": {
"optional": true
},
"eslint-plugin-jsdoc": {
"optional": true
},
"eslint-plugin-jsx-a11y": {
"optional": true
},
"eslint-plugin-lodash": {
"optional": true
},
"eslint-plugin-promise": {
"optional": true
},
"eslint-plugin-react": {
"optional": true
},
"eslint-plugin-react-hooks": {
"optional": true
},
"eslint-plugin-unicorn": {
"optional": true
}
},
"engines": {
"node": ">=18.12.0"
},
"packageManager": "[email protected]",
"repository": {
"type": "git",
"url": "git+https://github.com/alexilyaev/eslint-config-ai.git"
},
"keywords": [
"eslint",
"eslintconfig"
],
"author": "Alex Ilyaev",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexilyaev/eslint-config-ai/issues"
},
"homepage": "https://github.com/alexilyaev/eslint-config-ai#readme"
}