-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.11 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
{
"repository": {
"type": "git",
"url": "git+https://github.com/wellcomecollection/catalogue-pipeline.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/wellcomecollection/catalogue-pipeline/issues"
},
"homepage": "https://github.com/wellcomecollection/catalogue-pipeline",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"babel-eslint": "^10.0.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.3.0",
"lint-staged": "^8.1.5",
"prettier": "^2.3.2",
"typescript": "^4.4.4"
},
"private": true,
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}