-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·37 lines (37 loc) · 860 Bytes
/
package.json
File metadata and controls
executable file
·37 lines (37 loc) · 860 Bytes
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
{
"name": "hasura-with-firebase",
"repository": "https://github.com/joserocha3/hasura-with-firebase",
"author": "Pablo Rocha",
"license": "MIT",
"version": "0.0.1",
"scripts": {
"lint-fix": "eslint --fix",
"lint-all": "eslint ."
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^6.2.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.4",
"lint-staged": "^9.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,json,md}": [
"yarn lint-fix",
"git add"
]
},
"dependencies": {
"eslint-plugin-react-hooks": "^2.0.1"
}
}