Files
student_manger/package.json
寒寒 05c33b1fe8 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
2026-03-21 02:00:55 +08:00

31 lines
700 B
JSON

{
"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"
}
}