-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 994 Bytes
/
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
{
"name": "eslint-config-mw",
"version": "1.4.0",
"repository": "github:marketwurks/eslint-config-mw",
"main": "index.js",
"files": [
"index.js",
"react.js",
"react-native.js"
],
"author": "[email protected]",
"license": "ISC",
"peerDependencies": {
"eslint": ">=7.0.0",
"prettier": ">=2.0.0"
},
"optionalDependencies": {
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.11.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0"
},
"devDependencies": {
"eslint": "^7.29.0",
"prettier": "^2.3.1"
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "all",
"arrowParens": "always"
}
}