feat: implement user profile management with avatars, login, and personal data

- Add avatar upload functionality with public URL access.
- Implement user login with email and password authentication.
- Create endpoints for fetching and updating the authenticated user's profile.
- Set up database migrations for user profiles, including email and role management.
- Introduce personal data management linked to user profiles.
- Add email verification process with welcome email templates.
This commit is contained in:
fabio
2026-07-02 10:39:53 +02:00
parent 2608ce6e60
commit 167be9b0b3
94 changed files with 11696 additions and 1 deletions

45
frontend/package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "frontend",
"version": "0.0.1",
"description": "A Quasar Project",
"productName": "Quasar App",
"author": "fabio <prada.fabio@gmail.com>",
"type": "module",
"private": true,
"scripts": {
"dev": "quasar dev",
"build": "quasar build",
"typecheck": "vue-tsc --noEmit",
"zod:sync": "node tools/zod-sync.mjs",
"postinstall": "quasar prepare --silent"
},
"dependencies": {
"@quasar/extras": "^2.0.0",
"pinia": "^3.0.4",
"quasar": "^2.20.0",
"vue": "^3.5.22",
"vue-advanced-cropper": "^2.8.9",
"vue-i18n": "^11.4.6",
"vue-router": "^5.0.6",
"zod": "^4.4.3"
},
"devDependencies": {
"@quasar/app-vite": "^3.0.0-rc.2",
"@types/node": "^22.19.11",
"autoprefixer": "^10.4.27",
"typescript": "^6.0.0",
"vue-tsc": "^3.3.3"
},
"keywords": [
"quasar",
"quasar-app",
"quasar-cli",
"quasar-app-vite",
"vite",
"vue",
"vuejs"
],
"engines": {
"node": ">= 26 || ^24 || ^22.12"
}
}