rsnext/examples/with-fauna/package.json
Adam Sobotka 89b961e191
Request library required by setup (#37658)
In my last PR I removed the request library as it is obsolete and the application does not use it. The database setup utility does though, so I am reverting this change.  


Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com>
2022-06-13 11:00:50 +00:00

27 lines
591 B
JSON

{
"private": true,
"scripts": {
"dev": "next",
"build": "yarn setup && next build",
"start": "next start",
"setup": "node ./scripts/setup.js"
},
"dependencies": {
"classnames": "2.3.1",
"date-fns": "2.28.0",
"faunadb": "4.5.4",
"graphql": "16.5.0",
"graphql-request": "4.3.0",
"next": "latest",
"react": "18.1.0",
"react-dom": "18.1.0",
"swr": "1.3.0"
},
"devDependencies": {
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"stream-to-promise": "3.0.0",
"tailwindcss": "^3.1.2",
"request": "^2.88.2"
}
}