rsnext/examples/api-routes-apollo-server-and-client/package.json
Herman 25a4c00559
[EXAMPLES] fix apollo client cache hydration (#27799)
Current implementation causes bugs when navigating between SSG,SSR and 
Client Side pages as cache gets overwritten.

Reusing more appropriate implementation used in example 
api-routes-apollo-server-and-client-auth introduced with commit 
4bbdd09097
2022-05-22 21:47:25 -05:00

18 lines
363 B
JSON

{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@apollo/client": "^3.0.2",
"apollo-server-micro": "^2.14.2",
"deepmerge": "4.2.2",
"graphql": "^14.0.2",
"next": "latest",
"prop-types": "^15.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}