feat: initial commit with Nuxt 3 student management system

- Add Nuxt 3 + Prisma + SQLite full-stack setup
- Add student CRUD API with batch import/export
- Add stats dashboard with gender/class distribution
- Add target community settings feature
- Add Docker deployment support (Dockerfile + docker-compose)
- Add README with development and deployment instructions
This commit is contained in:
2026-03-21 02:00:55 +08:00
commit 05c33b1fe8
25 changed files with 15749 additions and 0 deletions

30
package.json Normal file
View File

@@ -0,0 +1,30 @@
{
"name": "student-data-system",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"preview": "nuxt preview",
"generate": "nuxt generate",
"postinstall": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio"
},
"dependencies": {
"@libsql/client": "^0.6.0",
"@prisma/client": "^5.10.0",
"nuxt": "^3.10.0",
"vue": "^3.4.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@nuxt/devtools": "^1.0.0",
"@nuxtjs/tailwindcss": "^6.14.0",
"autoprefixer": "^10.4.27",
"postcss": "^8.5.8",
"prisma": "^5.10.0",
"tailwindcss": "^3.4.19"
}
}