-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.03 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
{
"name": "@react-hookz/eslint-config",
"version": "4.0.0",
"description": "eslint configuration files used in @react-hookz projects",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/react-hookz/eslint-config.git"
},
"bugs": {
"url": "https://github.com/react-hookz/eslint-config/issues"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": "./configs/base.js",
"./*": "./configs/*",
"./configs/*": null,
"./configs/*.js": null
},
"files": [
"configs"
],
"peerDependencies": {
"eslint": "^9.15.0",
"jest": "*",
"typescript": "^5.0.0",
"vitest": "*"
},
"peerDependenciesMeta": {
"jest": {
"optional": true
},
"typescript": {
"optional": true
},
"vitest": {
"optional": true
}
},
"dependencies": {
"@eslint/js": "^9.15.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@vitest/eslint-plugin": "^1.1.11",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.46.0",
"eslint-config-xo-typescript": "^7.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-mdx": "^3.1.5",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-no-use-extend-native": "^0.7.2",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-unicorn": "^56.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@react-hookz/eslint-formatter-gha": "^3.0.0",
"@semantic-release/exec": "^6.0.3",
"@stylistic/eslint-plugin": "^2.11.0",
"@types/node": "^22.10.0",
"@typescript-eslint/utils": "^8.16.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"pinst": "^3.0.0",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2"
},
"scripts": {
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"lint": "eslint",
"lint:fix": "yarn lint --fix"
},
"packageManager": "yarn@4.5.3"
}