-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 878 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
38
39
40
41
42
43
44
45
{
"name": "fetch-api-react",
"version": "1.0.4",
"main": "./dist/index.js",
"author": "Mario Magomedov",
"license": "MIT",
"scripts": {
"pub": "npx webpack && npm version patch && npm publish",
"wp": "npx webpack"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.25",
"babel-loader": "^8.3.0",
"css-loader": "^6.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/web-2017/fetch-api-react.git"
},
"keywords": [
"fetch",
"fetch-api",
"rest",
"rest-api"
],
"peerDependencies": {
"react": "*",
"react-dom": "*"
},
"files": [
"dist"
],
"dependencies": {
"node-fetch": "^2.6.7"
}
}