-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "use-reducer-saga",
"version": "0.2.0-rc.2",
"description": "Use redux-saga with react reducer hook, with convenience methods for running sagas from components.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"reducer",
"redux-saga",
"saga",
"state",
"state management"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "",
"license": "ISC",
"dependencies": {
"events": "^3.1.0",
"hash-sum": "^2.0.0",
"redux-saga": "^1.1.3",
"scheduler": "^0.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gorillatron/use-saga-reducer.git"
},
"prepublish": "tsc",
"devDependencies": {
"@types/events": "^3.0.0",
"@types/hash-sum": "^1.0.0",
"@types/react": "^16.9.20",
"@types/react-dom": "^16.9.5",
"@types/redux-saga": "^0.10.5",
"@types/scheduler": "^0.16.1",
"react": "0.0.0-experimental-241c4467e",
"react-dom": "0.0.0-experimental-241c4467e",
"react-use": "^13.26.1",
"typedoc": "^0.16.10",
"typescript": "^3.7.5"
}
}