-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.01 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
{
"name": "react-redux-subapp",
"version": "1.0.7",
"description": "Create pluggable sub applications for React & Redux.",
"main": "lib/index.js",
"scripts": {
"dist": "babel src --out-dir lib --copy-files",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "rm -rf lib && npm run dist"
},
"author": "Shubham Jain",
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "^2.3.1",
"prop-types": "^15.5.7",
"redux-subspace": "^2.0.6",
"redux-transient": "^0.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"react": "^15.6.2",
"redux": "^3.7.2",
"redux-saga": "^0.15.6",
"redux-subspace-saga": "^2.0.6"
},
"peerDependencies": {
"react": ">=15.3.0",
"redux": ">=3.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/shhaumb/react-redux-subapp"
}
}