-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.67 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
{
"name": "eltwallet_website",
"version": "2.0.0",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"lint": "eslint .",
"precommit": "lint-staged"
},
"dependencies": {
"gatsby": "1.9.272",
"gatsby-plugin-google-analytics": "1.0.31",
"gatsby-plugin-manifest": "1.0.27",
"gatsby-plugin-offline": "1.0.18",
"gatsby-plugin-react-helmet": "2.0.11",
"gatsby-plugin-remove-serviceworker": "1.0.0",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-helmet": "5.2.0",
"tachyons": "4.10.0"
},
"devDependencies": {
"babel-eslint": "8.2.3",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.9.1",
"husky": "0.14.3",
"lint-staged": "7.2.0",
"prettier": "1.13.5"
},
"eslintConfig": {
"extends": [
"airbnb",
"prettier",
"prettier/react"
],
"env": {
"browser": true
},
"parser": "babel-eslint",
"rules": {
"react/jsx-filename-extension": "0",
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": [
"Link"
],
"specialLink": [
"to",
"hrefLeft",
"hrefRight"
],
"aspects": [
"noHref",
"invalidHref",
"preferButton"
]
}
]
}
},
"eslintIgnore": [
"public/",
".cache/"
],
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --trailing-comma all --write",
"git add"
]
}
}