-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "whoishiring.work",
"version": "1.2.0",
"private": true,
"description": "Code for the website whoishiring.work",
"author": "Jerroyd Moore <[email protected]>",
"license": "MIT",
"repository": "https://github.com/jerroydmoore/whoishiring.work.git",
"type": "commonjs",
"engines": {
"node": ">=12.13.0"
},
"scripts": {
"lint": "eslint . --ext .js",
"release": "standard-version",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-node": "^4.0.0",
"eslint-config-react-app": "^5.2.0",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"husky": "^3.1.0",
"jest": "^24.8.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"standard-version": "^7.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js, jsx}": [
"eslint",
"prettier --write",
"git add",
"jest --bail --findRelatedTests"
]
}
}