-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "eslint-config-devansvd",
"version": "0.4.0",
"description": "devansvd's eslint config for js, nodejs, maybe jsx too",
"main": "index.js",
"scripts": {
"lint": "$(npm bin)/eslint .",
"lint:fix": "$(npm bin)/eslint . --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/devansvd/eslint-config-devansvd.git"
},
"keywords": [
"eslint",
"eslint-config",
"devansvd",
"prettier",
"nodejs",
"javascript",
"lint"
],
"author": "Devan <[email protected]> (https://devansvd.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/devansvd/eslint-config-devansvd/issues"
},
"homepage": "https://github.com/devansvd/eslint-config-devansvd#readme",
"dependencies": {
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"eslint": "^6.8.0",
"prettier": "2.0.5"
},
"devDependencies": {
"husky": "^4.2.5"
}
}