-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 864 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
41
{
"name": "prettier-eslint-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint '**/*.{js}' --quiet --fix",
"format": "prettier --write '**/*.{js,html,css}'"
},
"lint-staged": {
"*.{js,html,csss}": [
"eslint --fix",
"prettier --config ./.prettierrc --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=8.9.3",
"npm": ">=4.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"prettier": "^1.12.1",
"husky": "^1.3.1",
"lint-staged": "^8.1.4"
}
}