Skip to content

Commit

Permalink
update the world
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCleary committed Oct 14, 2017
1 parent 3aa6ccc commit 15d5ea3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 26 deletions.
47 changes: 22 additions & 25 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,50 +22,47 @@
},
"homepage": "https://github.com/StephenCleary/DotNetApis#readme",
"devDependencies": {
"@types/bluebird-global": "^3.5.3",
"@types/material-ui": "^0.18.3",
"@types/query-string": "^5.0.0",
"@types/react": "^16.0.10",
"@types/react-dom": "^16.0.1",
"@types/react-redux": "^5.0.10",
"@types/react-router": "^4.0.15",
"@types/react-router-dom": "^4.0.8",
"@types/recompose": "^0.24.2",
"@types/redux-actions": "^2.2.2",
"@types/redux-immutable-state-invariant": "^2.0.2",
"awesome-typescript-loader": "^3.1.3",
"@types/redux-thunk": "^2.1.32",
"awesome-typescript-loader": "^3.2.3",
"css-loader": "^0.28.7",
"html-webpack-plugin": "^2.30.1",
"http-server": "^0.10.0",
"redux-immutable-state-invariant": "^2.0.0",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.1",
"source-map-loader": "^0.2.2",
"style-loader": "0.19.0",
"typescript": "^2.3.3",
"webpack": "^3.6.0",
"typescript": "^2.5.3",
"webpack-bundle-size-analyzer": "^2.7.0"
},
"dependencies": {
"@types/bluebird-global": "^3.5.3",
"@types/material-ui": "^0.18.2",
"@types/query-string": "^5.0.0",
"@types/react": "^15.6.2",
"@types/react-dom": "^15.5.4",
"@types/react-redux": "^5.0.9",
"@types/react-router": "^4.0.15",
"@types/react-router-dom": "^4.0.8",
"@types/recompose": "^0.24.2",
"@types/redux-actions": "^2.2.1",
"@types/redux-thunk": "2.1.32",
"ably": "^1.0.5",
"awesome-typescript-loader": "^3.2.3",
"bluebird": "^3.5.0",
"date-fns": "^1.28.5",
"ably": "^1.0.7",
"bluebird": "^3.5.1",
"date-fns": "^1.29.0",
"history": "^4.7.2",
"material-ui": "^0.19.3",
"material-ui": "^0.19.4",
"query-string": "^5.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"recompose": "^0.25.1",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-actions": "^2.2.1",
"redux-devtools-extension": "^2.13.2",
"redux-immutable-state-invariant": "^2.1.0",
"redux-thunk": "^2.2.0",
"typescript": "^2.5.2",
"webpack": "^2.7.0",
"whatwg-fetch": "^2.0.3"
}
}
2 changes: 1 addition & 1 deletion web/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function mapDispatchToProps(dispatch: Dispatch<any>) {
}

window.onload = () => {
const ConnectedMain = withRouter(connect(x => x, mapDispatchToProps)(Main));
const ConnectedMain = withRouter<{}>(connect(x => x, mapDispatchToProps)(Main));
render(
<Provider store={store}>
<BrowserRouter>
Expand Down

0 comments on commit 15d5ea3

Please sign in to comment.