-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 831 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
35
36
37
{
"name": "use-axios-upload-progress",
"version": "1.0.0",
"description": "Easily track axios upload progress",
"main": "index.js",
"scripts": {
"build": "webpack",
"test": "jest"
},
"keywords": [
"react",
"hooks",
"axios",
"upload"
],
"author": "Irvan Herz",
"license": "MIT",
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-stage-0": "^7.8.3",
"@testing-library/react-hooks": "^7.0.2",
"babel-loader": "^8.2.3",
"jest": "^27.3.1",
"path": "^0.12.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^5.59.1",
"webpack-cli": "^4.9.1"
}
}