-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.86 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "react-redux-reliever",
"version": "3.0.3",
"description": "Stop opening four different files to code a simple feature when using redux",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"lint": "eslint src && eslint examples",
"check": "echo \"checks disabled for now\"",
"compile": "rm -rf lib && BABEL_ENV=cjs babel -d lib/ src/",
"build:es": "BABEL_ENV=es babel src --out-dir es",
"build": "rm -rf es && npm run build:es",
"prepublish": "npm run check && npm run compile && npm run build",
"counter": "node examples/counter/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RealmTeam/react-redux-reliever"
},
"keywords": [
"javascript",
"redux",
"middleware",
"saga",
"react"
],
"author": "Philip GARNERO <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RealmTeam/react-redux-reliever/issues"
},
"homepage": "https://github.com/RealmTeam/react-redux-reliever#readme",
"dependencies": {
"eslint-plugin-redux-reliever": "1.5.0",
"seamless-immutable": "^7.1.4",
"shallow-equal": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-flow": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"eslint": "^6.8.0",
"express": "^4.16.1",
"gitbook-cli": "2.3.2",
"lolex": "^5.1.2",
"prop-types": "^15.5.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-observable": "^1.1.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.10.1"
},
"peerDependencies": {
"prop-types": "^15.5.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.4",
"redux-observable": "^1.1.0"
},
"optionalDependencies": {
"redux-saga": "^1.1.3",
"rxjs": "^6.5.4",
"rxjs-compat": "^6.5.4"
},
"npmName": "react-redux-reliever",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
]
}