mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
7adb6c57f4
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
26 lines
540 B
JSON
26 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"
|
|
}
|
|
}
|