-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "react-axios-use-request",
"version": "1.1.0",
"description": "React hook for managing http requests with axios",
"main": "lib/useRequest.js",
"files": [
"lib"
],
"scripts": {
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aNyMoRe0505/react-axios-use-request.git"
},
"author": {
"name": "Paul Wang",
"email": "[email protected]"
},
"keywords": [
"react",
"react-hook",
"hook",
"axios",
"request",
"fetch",
"api"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aNyMoRe0505/react-axios-use-request/issues"
},
"homepage": "https://github.com/aNyMoRe0505/react-axios-use-request#readme",
"peerDependencies": {
"axios": "^0.19.0",
"react": "^16.8.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"axios": "^0.21.1",
"babel-eslint": "^10.1.0",
"eslint": "7.2.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-react-hooks": "^4.0.8",
"react": "^16.13.1"
}
}