-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 1.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-use-fetch-factory",
"version": "1.0.2",
"repository": "https://JohannesKlauss@github.com/JohannesKlauss/react-use-fetch-factory.git",
"author": "Johannes Klauss",
"keywords": [
"react",
"hook",
"hooks",
"component",
"redux",
"react-redux",
"fetch",
"data-fetching"
],
"license": "MIT",
"scripts": {
"build": "pack build",
"publish": "pack publish",
"docz:dev": "docz dev",
"docz:build": "docz build",
"version": "npm run build"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript",
"@babel/preset-react"
]
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-ts-standard-pkg"
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "7.8.3",
"@babel/preset-typescript": "7.8.3",
"@emotion/core": "10.0.28",
"@pika/pack": "0.5.0",
"@pika/plugin-build-node": "0.9.2",
"@pika/plugin-build-types": "0.9.2",
"@pika/plugin-build-web": "0.9.2",
"@pika/plugin-ts-standard-pkg": "0.9.2",
"@types/react": "16.9.23",
"@types/react-dom": "16.9.5",
"@types/react-redux": "7.1.7",
"docz": "2.2.0",
"docz-theme-default": "1.2.0",
"emotion-theming": "10.0.27",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-redux": "7.2.0",
"redux": "4.0.5",
"typescript": "3.8.3"
},
"peerDependencies": {
"react": ">=16.8.3",
"react-redux": ">=7.1.0",
"redux": "^2.0.0 || ^3.0.0 || ^4.0.0-0"
},
"resolutions": {
"@types/react": "16.9.23"
}
}