-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
104 lines (104 loc) · 3.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "eslint-config-kingstinct",
"version": "5.1.2",
"description": "ESLint configuration for React-native based on Airbnb with some great tweaks",
"main": "index.js",
"author": {
"email": "[email protected]",
"name": "Robert Herber",
"url": "https://kingstinct.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kingstinct/eslint"
},
"license": "MIT",
"scripts": {
"test": "pnpm lint",
"lint": "concurrently \"pnpm lint-only\" \"tsc --noEmit\"",
"lint-only": "eslint .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm test",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.js": "eslint --fix",
"*.json": "eslint --fix",
"*.graphql": "eslint --fix",
"*.yml": "eslint --fix"
},
"packageManager": "[email protected]",
"keywords": [
"eslint",
"eslintconfig",
"config",
"airbnb",
"javascript",
"styleguide",
"typescript",
"react"
],
"peerDependencies": {
"@graphql-eslint/eslint-plugin": ">=3",
"@types/jest": ">=26",
"@typescript-eslint/eslint-plugin": ">=5",
"@typescript-eslint/parser": ">=5",
"eslint": ">=8",
"eslint-config-airbnb-base": ">=15",
"eslint-import-resolver-typescript": ">=3",
"eslint-plugin-comment-length": ">=0",
"eslint-plugin-functional": ">=4",
"eslint-plugin-import": ">=2",
"eslint-plugin-jest": ">=26",
"eslint-plugin-jsonc": ">=2",
"eslint-plugin-unicorn": ">=43",
"eslint-plugin-yml": ">=1",
"graphql": ">=16",
"jest": ">=26",
"typescript": ">=4"
},
"optionalPeerDependencies": {
"@babel/core": ">=7",
"eslint-config-airbnb": ">=19",
"eslint-plugin-jsx-a11y": ">=6",
"eslint-plugin-react-hooks": ">=4",
"eslint-plugin-react-native": ">=4",
"eslint-plugin-react-native-a11y": ">=3",
"eslint-plugin-react": ">=7",
"expo": ">=45"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@graphql-eslint/eslint-plugin": "^3.20.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"concurrently": "^8.2.0",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-comment-length": "^1.4.4",
"eslint-plugin-eslint-plugin": "^5.1.1",
"eslint-plugin-functional": "^5.0.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-react-native-a11y": "^3.3.0",
"eslint-plugin-unicorn": "^48.0.0",
"eslint-plugin-yml": "^1.8.0",
"expo": "^49.0.4",
"graphql": "^16.7.1",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"react": "^18.2.0",
"typescript": "^5.1.6"
}
}