36 lines
878 B
JSON
36 lines
878 B
JSON
{
|
|
"name": "homelab-dashboard",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"engines": {
|
|
"node": "^20.0.0 || ^22.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint app src lib --ext .ts,.tsx"
|
|
},
|
|
"dependencies": {
|
|
"better-sqlite3": "^9.0.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",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|