Initial commit: EduBox V2 platform

This commit is contained in:
root
2026-06-06 19:55:41 +00:00
commit 0a73a70820
69 changed files with 5634 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
{
"name": "edubox-server",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"lucide-react": "^1.17.0",
"next": "^16.0.0",
"next-auth": "^4.24.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tailwind-merge": "^2.2.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.4.0",
"postcss": "^8.4.0",
"prisma": "^5.0.0",
"tailwindcss": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
}
}