rsnext/examples/with-vercel-fetch/package.json
Michael McQuade 5032dd926a
Change zeit fetch to vercel fetch (#21913)
This PR does the following:

- Update documentation referencing @zeit/fetch to @vercel/fetch
- Switch packages @zeit/fetch to @vercel/fetch
- ~~Fix `browser.js` to actually use @vercel/fetch, it was only using unfetch directly before~~
- Update React to 17 
- Change folder name and package name
2021-02-18 15:09:52 +00:00

18 lines
345 B
JSON

{
"name": "with-vercel-fetch",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@vercel/fetch": "6.1.0",
"next": "latest",
"node-fetch": "2.6.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"unfetch": "4.2.0"
},
"license": "MIT"
}