Skip to content

Commit a5bdbcb

Browse files
committed
added deps + typings
redux react-redux redux-actions
1 parent 8175f4c commit a5bdbcb

File tree

2 files changed

+41
-1
lines changed

2 files changed

+41
-1
lines changed

jspm.config.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -562,6 +562,9 @@ SystemJS.config({
562562
"process": "github:jspm/nodelibs-process@0.2.0-alpha",
563563
"react": "npm:react@15.3.1",
564564
"react-dom": "npm:react-dom@15.3.1",
565+
"react-redux": "npm:react-redux@4.4.5",
566+
"redux": "npm:redux@3.5.2",
567+
"redux-actions": "npm:redux-actions@0.11.0",
565568
"stream": "github:jspm/nodelibs-stream@0.2.0-alpha",
566569
"string_decoder": "github:jspm/nodelibs-string_decoder@0.2.0-alpha",
567570
"url": "github:jspm/nodelibs-url@0.2.0-alpha",
@@ -855,6 +858,33 @@ SystemJS.config({
855858
"map": {
856859
"domain-browserify": "npm:domain-browser@1.1.7"
857860
}
861+
},
862+
"npm:redux@3.5.2": {
863+
"map": {
864+
"lodash-es": "npm:lodash-es@4.15.0",
865+
"symbol-observable": "npm:symbol-observable@0.2.4",
866+
"lodash": "npm:lodash@4.15.0",
867+
"loose-envify": "npm:loose-envify@1.2.0"
868+
}
869+
},
870+
"npm:react-redux@4.4.5": {
871+
"map": {
872+
"invariant": "npm:invariant@2.2.1",
873+
"lodash": "npm:lodash@4.15.0",
874+
"hoist-non-react-statics": "npm:hoist-non-react-statics@1.2.0",
875+
"loose-envify": "npm:loose-envify@1.2.0"
876+
}
877+
},
878+
"npm:invariant@2.2.1": {
879+
"map": {
880+
"loose-envify": "npm:loose-envify@1.2.0"
881+
}
882+
},
883+
"npm:redux-actions@0.11.0": {
884+
"map": {
885+
"lodash": "npm:lodash@4.15.0",
886+
"reduce-reducers": "npm:reduce-reducers@0.1.2"
887+
}
858888
}
859889
}
860890
});

package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"@types/react-dom": "^0.14.16",
4343
"@types/react-redux": "^4.4.31",
4444
"@types/react-router": "^2.0.33",
45+
"@types/react-router-redux": "^4.0.32",
4546
"@types/redux": "^3.5.28",
4647
"@types/redux-actions": "^0.8.29",
4748
"@types/tape": "^4.2.27",
@@ -59,7 +60,9 @@
5960
"main": "app.tsx",
6061
"dependencies": {
6162
"classnames": "npm:classnames@^2.2.5",
62-
"react-dom": "npm:react-dom@^15.3.1"
63+
"react-dom": "npm:react-dom@^15.3.1",
64+
"react-redux": "npm:react-redux@^4.4.5",
65+
"redux-actions": "npm:redux-actions@^0.11.0"
6366
},
6467
"devDependencies": {
6568
"blue-tape": "npm:blue-tape@^0.2.0",
@@ -82,6 +85,7 @@
8285
"path": "github:jspm/nodelibs-path@^0.2.0-alpha",
8386
"process": "github:jspm/nodelibs-process@^0.2.0-alpha",
8487
"react": "npm:react@^15.3.1",
88+
"redux": "npm:redux@^3.5.2",
8589
"stream": "github:jspm/nodelibs-stream@^0.2.0-alpha",
8690
"string_decoder": "github:jspm/nodelibs-string_decoder@^0.2.0-alpha",
8791
"url": "github:jspm/nodelibs-url@^0.2.0-alpha",
@@ -118,6 +122,12 @@
118122
"test.js"
119123
]
120124
},
125+
"npm:lodash@4.15.0": {
126+
"map": {
127+
"buffer": "@empty",
128+
"process": "@empty"
129+
}
130+
},
121131
"npm:ms@0.7.1": {
122132
"jspmNodeConversion": false,
123133
"format": "cjs"

0 commit comments

Comments
 (0)