33 lines
721 B
JSON
33 lines
721 B
JSON
{
|
|
"name": "rtrips-online",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"db:push": "npx prisma db push",
|
|
"db:migrate": "npx prisma migrate dev",
|
|
"db:studio": "npx prisma studio"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^6.19.2",
|
|
"date-fns": "^4.1.0",
|
|
"nanoid": "^5.0.9",
|
|
"next": "14.2.35",
|
|
"react": "^18",
|
|
"react-dom": "^18",
|
|
"zustand": "^5.0.11"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"postcss": "^8",
|
|
"prisma": "^6.19.2",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5"
|
|
}
|
|
}
|