-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
40 lines (40 loc) · 899 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
{
"name": "pacman",
"version": "0.1.0",
"license": "MIT",
"author": "Batch 5 Pesto",
"scripts": {
"lint": "eslint . --ext js,jsx",
"lintfix": "eslint . --ext js,jsx --fix",
"postinstall": "yarn install:client && yarn install:server",
"install:client": "cd client && yarn",
"install:server": "cd server && yarn"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"yarn lint"
]
},
"devDependencies": {
"babel-eslint": "^9.0.0",
"eslint": "5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"eslint-plugin-import": "^2.16.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}