-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.39 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-use-fetch-hook",
"version": "1.1.0",
"description": "React hook for fetching data",
"author": "ikibalnyi",
"license": "MIT",
"repository": "ikibalnyi/react-use-fetch",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/index.es.js",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "react-scripts test --env=jsdom",
"test:watch": "react-scripts test --watch --env=jsdom",
"test:ci": "cross-env CI=1 react-scripts test --env=jsdom",
"build": "rollup -c",
"start": "rollup -c -w",
"predeploy": "cd example && yarn install && yarn run build"
},
"dependencies": {},
"peerDependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/runtime": "^7.14.0",
"@testing-library/react": "^11.2.6",
"@testing-library/react-hooks": "^5.1.2",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.5",
"@types/testing-library__react": "^10.2.0",
"cross-env": "^7.0.3",
"gh-pages": "^3.1.0",
"react": "^17.0.2",
"react-test-renderer": "^17.0.2",
"rollup": "^2.47.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.4"
}
}