rsnext/examples/with-mysql/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
415 B
JSON
Raw Normal View History

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"seed": "node prisma/seed.js"
},
"dependencies": {
"@prisma/client": "3.10.0",
"next": "latest",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"autoprefixer": "10.4.2",
"postcss": "8.4.7",
"prisma": "3.10.0",
"tailwindcss": "3.0.23"
}
}