-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
70 lines (70 loc) · 1.79 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
{
"name": "redux-saga-devtools",
"version": "0.3.0",
"description": "Monitor and UI for redux-saga",
"main": "lib/index.js",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/node": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@types/redux-saga": "^0.10.5",
"babel-eslint": "^8.0.2",
"babelify": "^10.0.0",
"cross-env": "^3.1.3",
"eslint": "^4.11.0",
"jest": "^24.9.0",
"parcel": "^1.12.4",
"react-redux": "^5.0.0",
"redux": "^3.6.0",
"redux-saga": "^0.16.0",
"regenerator-runtime": "^0.13.3",
"rimraf": "^2.5.4",
"tap-spec": "^4.1.1"
},
"dependencies": {
"core-js": "^3.6.4",
"prop-types": "^15.5.10",
"react": "^15.3.2 || ^16.0.0",
"react-dom": "^15.3.2 || ^16.0.0",
"styled-components": "^2.2.4"
},
"peerDependecies": {
"redux-saga": "^0.15.6"
},
"scripts": {
"lint": "eslint src",
"test": "jest",
"compile": "rimraf lib && babel src --out-dir lib",
"prepublish": "npm run lint && npm run test && npm run compile",
"counter": "parcel ./examples/cancellable-counter/index.html",
"shopping-cart": "parcel ./examples/shopping-cart/index.html"
},
"browserify": {
"transform": [
[
"babelify"
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/yelouafi/redux-saga-devtools.git"
},
"keywords": [
"javascript",
"redux",
"redux-saga",
"monior",
"devtool",
"react"
],
"author": "Yassine ELOUAFI <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yelouafi/redux-saga-devtools/issues"
},
"homepage": "https://github.com/yelouafi/redux-saga-devtools"
}