rsnext/examples/with-unsplash/package.json
Diego Gennaro 85d58298a3
Add example: Unsplash integration (#16142)
* nextjs with unsplash initial commit

* update demo link

* remove isomorphic-unfetch

* remove ssr on collection page

* fix style issues

* fix import/no-anonymous-default-export

* usign fetch instead of request

* remove credits

* improve instructions

* improve instructions

* Updated readme steps and images

* Updated readme

* Updated gitignore

Co-authored-by: Luis Alvarez <luis@vercel.com>
2020-08-22 16:02:49 -05:00

26 lines
581 B
JSON

{
"name": "with-unsplash",
"version": "1.0.0",
"license": "MIT",
"description": "Using Next.js with Unsplash API",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "^9.5.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"swr": "^0.3.0",
"unsplash-js": "^6.0.0"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@types/react": "^16.9.46",
"@types/request": "^2.48.5",
"@types/unsplash-js": "^6.0.1",
"request": "^2.88.2",
"typescript": "^3.9.7"
}
}