-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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": "react-future-hooks",
"version": "0.0.2",
"description": "A set of utility hooks for perfoming declarative async operations in React Components",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "git@github.com:ddanielbee/react-future-hooks.git",
"author": "Daniel Bolivar <daboliva@gmail.com>",
"license": "MIT",
"scripts": {
"prepare": "npm run test && npm run clean && npm run build",
"clean": "rm -rf lib",
"typecheck": "tsc",
"build": "tsc --project ./tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@testing-library/react": "10.4.3",
"@testing-library/react-hooks": "3.3.0",
"@types/jest": "25.2.1",
"@types/react": "16.9.16",
"@types/react-dom": "16.9.4",
"husky": "4.2.5",
"jest": "25.4.0",
"jest-environment-jsdom-global": "2.0.2",
"jest-fetch-mock": "^3.0.3",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-test-renderer": "16.13.1",
"ts-jest": "25.4.0",
"typescript": "3.7.3"
},
"peerDependencies": {
"react": "16.12.0",
"react-dom": "16.12.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"lib/**/*"
]
}