Files
the-biergarten-app/package.json
2023-01-18 20:51:41 -05:00

35 lines
862 B
JSON

{
"name": "my-project",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prismaDev": "dotenv -e .env.local prisma migrate dev"
},
"dependencies": {
"@next/font": "13.1.2",
"@prisma/client": "^4.8.1",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"daisyui": "^2.47.0",
"eslint": "8.32.0",
"eslint-config-next": "13.1.2",
"next": "13.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.4"
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"dotenv-cli": "^6.0.0",
"postcss": "^8.4.21",
"prisma": "^4.8.1",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1"
}
}