36 lines
933 B
JSON
36 lines
933 B
JSON
{
|
|
"name": "homelab-dashboard",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint app src lib --ext .ts,.tsx",
|
|
"prisma:generate": "prisma generate",
|
|
"prisma:db-push": "prisma db push"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^5.22.0",
|
|
"bcryptjs": "^3.0.3",
|
|
"next": "^16.2.3",
|
|
"next-auth": "^4.24.14",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.6",
|
|
"@types/react": "^18.2.46",
|
|
"@types/react-dom": "^18.2.18",
|
|
"@typescript-eslint/eslint-plugin": "^8.58.2",
|
|
"@typescript-eslint/parser": "^8.58.2",
|
|
"autoprefixer": "^10.4.16",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-next": "^15.0.3",
|
|
"postcss": "^8.4.32",
|
|
"prisma": "^5.22.0",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|