mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
46b57a6eff
* [refactor] with-apollo-and-redux: 2.0.0 - This ports over `with-apollo` (w/ recent `withRouter` fix and addition for Post) along with implementing `apollo-cache-redux` #3463 - The `redux` side of things is lacking (it is the *same* as the original example) - Created a `routes.js` for use on Server and Client Side (to expand the PostList functionality) - SSR is maintained - Redid the "PostVote" a bit... sorry. 😬️ Possible todo(s): - Add in API and Clock Examples from `with-redux` to show Apollo and Redux working together a bit more - redux-saga (I personally use this, may be too opinionated for the base example though) Packages updated: - apollo-cache-redux - apollo-client-preset - graphql - graphql-anywhere - graphql-tag - isomorphic-unfetch - next-routes - prop-types - react - react-apollo - react-dom - redux * [refactor] fix linting issues When I run `yarn lint` explicitly these were caught, but not doing a build proper. Apologies on that! * [chore] 📦️ package.json: like other examples * [refactor] +apollo-cache-inmemory, -apollo-cache-redux Separation of Apollo and Redux. 😄️ We could stand to use a few actual examples of Redux, though this is a good starting block. Some other code cleanup as well.
27 lines
632 B
JSON
27 lines
632 B
JSON
{
|
|
"name": "with-apollo-and-redux",
|
|
"version": "2.0.0",
|
|
"scripts": {
|
|
"dev": "node server.js",
|
|
"build": "next build",
|
|
"start": "NODE_ENV=production node server.js"
|
|
},
|
|
"dependencies": {
|
|
"apollo-cache-inmemory": "1.1.4",
|
|
"apollo-client-preset": "^1.0.4",
|
|
"graphql": "^0.11.7",
|
|
"graphql-anywhere": "^4.0.2",
|
|
"graphql-tag": "^2.5.0",
|
|
"isomorphic-unfetch": "^2.0.0",
|
|
"next": "latest",
|
|
"next-routes": "^1.2.0",
|
|
"prop-types": "^15.6.0",
|
|
"react": "^16.0.0",
|
|
"react-apollo": "^2.0.0",
|
|
"react-dom": "^16.0.0",
|
|
"redux": "^3.7.0"
|
|
},
|
|
"author": "",
|
|
"license": "ISC"
|
|
}
|