-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 955 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
41
42
43
44
45
46
47
{
"name": "jest-run",
"version": "2.0.1",
"repository": "guestlinelabs/jest-run",
"license": "MIT",
"engines": {
"node": ">=6"
},
"bugs": {
"url": "https://github.com/guestlinelabs/jest-run/issues"
},
"files": [
"bin",
"config",
"utils"
],
"bin": {
"jest-run": "./bin/scripts.js"
},
"dependencies": {
"@babel/core": "^7.16.0",
"babel-jest": "^27.4.2",
"babel-preset-react-app": "^10.0.1",
"dotenv": "^10.0.0",
"jest-watch-typeahead": "^1.0.0",
"react-app-polyfill": "^3.0.0",
"react-dev-utils": "^12.0.1"
},
"devDependencies": {
"husky": "3.1.0",
"jest": "^27.4.3",
"lint-staged": "9.5.0",
"prettier": "2.8.1",
"prettier-config-guestline": "2.1.0"
},
"lint-staged": {
"{src}/**/*.{ts,tsx,js,jsx,json,css,scss,less}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}