rsnext/examples/with-redux-saga/package.json
Timon Borter 7adb6c57f4 merge to redux-saga 1.0.0, api breaking changes included. (#6109)
Hi there
I noticed you have not yet included the api breaking changes in `"redux-saga": "1.0.0"`. Therefore I felt free to upgrade the dependencies in `examples/with-redux-saga`.
I do not know anything about apollo nor graphql, that is why I did not upgrade `examples/with-apollo-and-redux-saga`. But, I think you should do this on occasion.
Keep the great work up.
Regards
2019-01-25 22:25:08 +01:00

25 lines
540 B
JSON

{
"name": "with-redux-saga",
"version": "1.0.0",
"license": "ISC",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"es6-promise": "4.2.5",
"isomorphic-unfetch": "3.0.0",
"next": "latest",
"next-redux-saga": "3.0.0",
"next-redux-wrapper": "2.1.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "6.0.0",
"redux": "4.0.1",
"redux-saga": "1.0.0"
},
"devDependencies": {
"redux-devtools-extension": "2.13.7"
}
}