-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.2 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
{
"name": "conmanpackages",
"version": "1.0.0",
"description": "Conman packages",
"author": "",
"license": "ISC",
"dependencies": {
"lerna": "^3.16.4"
},
"lint-staged": {
"packages/**/*.*": [
"yarn lint",
"prettier --write",
"git add"
]
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "1.9.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "^22.15.1",
"eslint-plugin-prettier": "2.7.0",
"husky": "^0.14.3",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"jest-junit": "^7.0.0",
"lint-staged": "^7.3.0",
"prettier": "1.18.2",
"prettier-eslint-cli": "4.7.1"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"jest"
],
"rules": {
"no-underscore-dangle": 0,
"no-use-before-define": 0,
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/prefer-to-have-length": "warn",
"jest/valid-expect": "error"
},
"env": {
"jest/globals": true
}
}
}