rsnext/examples/with-fauna/package.json
Oscar Busk 69d6001c59
Make sure all example packages has private: true (#28008)
Update the `check-exampels.sh` script to also ensure all examples has `private: true` (763d9979f7)

Update exampels (1) that did not have `private: true` (bcdc4a3ae0)
2021-08-12 16:18:41 +00:00

32 lines
741 B
JSON

{
"private": true,
"name": "with-fauna",
"version": "1.0.0",
"license": "MIT",
"description": "Guestbook example with Next.js and Fauna.",
"scripts": {
"dev": "next",
"build": "yarn setup && next build",
"start": "next start",
"setup": "node ./scripts/setup.js"
},
"dependencies": {
"classnames": "2.3.1",
"date-fns": "2.23.0",
"faunadb": "4.3.0",
"graphql": "15.5.1",
"graphql-request": "3.5.0",
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"request": "2.88.2",
"swr": "0.5.6"
},
"devDependencies": {
"autoprefixer": "10.3.1",
"postcss": "8.3.6",
"prettier": "2.3.2",
"stream-to-promise": "3.0.0",
"tailwindcss": "2.2.7"
}
}