-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.29 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
{
"name": "@selemondev/create-eslint-config",
"type": "module",
"version": "1.3.0",
"packageManager": "pnpm@8.12.1",
"description": "An Eslint CLI to rapidly setup ESLint in React.js projects.",
"author": "Selemondev",
"license": "MIT",
"homepage": "https://github.com/selemondev/create-eslint-config/#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/selemondev/create-eslint-config.git"
},
"bugs": "https://github.com/selemondev/create-eslint-config/issues",
"keywords": [
"react",
"eslint",
"config"
],
"main": "src/index.js",
"bin": {
"create-eslint-config": "bin/create-eslint-config.js"
},
"engines": {
"node": "^16.14.0 || >= 18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint .",
"release": "bumpp && npm publish",
"test": "vitest",
"prepare": "simple-git-hooks"
},
"dependencies": {
"enquirer": "^2.4.1",
"javascript-stringify": "^2.1.0",
"kolorist": "^1.8.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.0",
"@antfu/ni": "^0.21.12",
"@antfu/utils": "^0.7.7",
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@rushstack/eslint-patch": "^1.6.1",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.10.0",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-react": "^13.0.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^16.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"lint-staged": "^15.2.0",
"pnpm": "^8.12.1",
"simple-git-hooks": "^2.9.0",
"standard": "^17.1.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vitest": "^1.1.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}