Files
ackify-ce/webapp/package.json
Benjamin 32b469f04e feat: add magic link authentication
- Now can activate OIDC and/or MagicLink for user authentication.
- Add page to choose authentication method (if only OIDC is enabled, auto redirecting to login screen)
2025-11-05 15:01:23 +01:00

45 lines
1.1 KiB
JSON

{
"name": "webapp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint:i18n": "node scripts/check-i18n.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:headless": "cypress run --headless",
"test:e2e": "cypress run --headless",
"test:e2e:open": "cypress open"
},
"dependencies": {
"axios": "^1.12.2",
"lucide-vue-next": "^0.546.0",
"pinia": "^3.0.3",
"radix-vue": "^1.9.17",
"vue": "^3.5.22",
"vue-i18n": "^11.1.12",
"vue-router": "^4.6.2"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^24.6.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cypress": "^15.5.0",
"postcss": "^8.5.6",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.14",
"tailwindcss-animate": "^1.0.7",
"typescript": "~5.9.3",
"vite": "^7.1.7",
"vue-tsc": "^3.1.0"
}
}