-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 952 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
{
"name": "jest-all-kind-unit-test-setups",
"version": "1.0.0",
"description": "Purpose of this project is to act as reference for all kind of unit test setups written in jest test framework",
"main": "index.js",
"repository": "https://github.com/saikumar-everest/jest-all-kind-unit-test-setups.git",
"author": "Saikumar Vantaku <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"format": "prettier --write .",
"format-stage": "pretty-quick --staged"
},
"dependencies": {
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"aws-sdk": "^2.815.0",
"axios": "^0.21.1",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"prettier": "2.2.1",
"pretty-quick": "^3.1.0",
"ts-jest": "^26.4.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn format-stage --check && yarn test"
}
}
}