-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.25 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": "react-use-fetch-with-redux",
"version": "3.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"keywords": [
"hooks",
"react",
"fetch",
"redux"
],
"repository": "git@github.com:grug/react-use-fetch-with-redux.git",
"homepage": "https://github.com/grug/react-use-fetch-with-redux#readme",
"author": "Dave Cooper <dave@davecooper.org>",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "rimraf dist/ && tsc"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"peerDependencies": {
"react": "^16.12.0",
"react-redux": "^7.1.3"
},
"np": {
"contents": "dist"
},
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@testing-library/react-hooks": "^3.2.1",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.7",
"@types/react": "^16.9.17",
"@types/react-redux": "^7.1.5",
"@types/react-test-renderer": "^16.9.1",
"husky": "^4.0.10",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"react": "^16.12.0",
"react-redux": "^7.1.3",
"react-test-renderer": "^16.12.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4"
}
}