-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"private": false,
"name": "@grailbio/eslint-config-grail",
"version": "1.0.2",
"description": "GRAIL eslint config",
"main": "src/index.js",
"homepage": "https://github.com/grailbio/ui-eslint-config-grail",
"scripts": {
"check-types": "true",
"format": "prettier --write \"src/**/*.js\" && yarn lint-fix",
"lint": "eslint --ext .js --ext .jsx src/",
"lint-fix": "yarn lint --fix",
"precommit": "lint-staged",
"test:staged": "yarn lint"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"keywords": [
"eslint",
"eslintconfig"
],
"dependencies": {
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-cypress": "^2.10.3",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.5.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"husky": "4.2.3",
"lint-staged": "7.3.0"
},
"peerDependencies": {
"eslint": ">=6"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
}
}