-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.37 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
{
"name": "@20i/eslint-config",
"version": "4.0.6",
"description": "ESLint and Prettier Config for Twenty Ideas",
"main": "index.js",
"exports": {
"./react": "./react.js",
"./react-native": "./react-native.js",
".": "./index.js",
"./prettier.config": "./prettier.config.js"
},
"type": "module",
"author": "Greg McKelvey <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/twentyideas/eslint-config-20i#readme",
"repository": {
"type": "git",
"url": "https://github.com/twentyideas/eslint-config-20i.git"
},
"keywords": [
"typescript",
"eslint",
"lint",
"config",
"prettier",
"style guide",
"react"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"index.js",
"eslint.config.js",
"react.js",
"react-native.js",
"tsconfig.json",
"prettier.config.js",
"*.d.ts"
],
"packageManager": "[email protected]",
"peerDependencies": {
"eslint": ">= 9 || < 10",
"prettier": ">= 3 || < 4",
"typescript": ">= 5 || < 6"
},
"dependencies": {
"@eslint/eslintrc": "^3.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "5.1.0-rc.1",
"prettier-plugin-organize-imports": "^4.0.0",
"typescript-eslint": "^8.15.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/eslint": "^9.6.1",
"@types/eslint-plugin-jsx-a11y": "^6.9.0",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/is-ci": "^3.0.4",
"@types/node": "^22.9.0",
"eslint": "^9.15.0",
"eslint-plugin-react-native": "^4.1.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"markdownlint": "^0.36.1",
"markdownlint-cli": "^0.42.0",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"scripts": {
"lint": "yarn eslint --max-warnings=0 --cache --fix \"**/*.{js,ts,jsx,tsx}\"",
"lint:markdown": "markdownlint --config linters/.markdownlint.json README.md */README.md",
"postinstall": "is-ci || husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}