feat: scaffold nuxt app

This commit is contained in:
2026-06-10 07:49:40 +00:00
parent 42d01f0673
commit 935ff5b757
6 changed files with 2164 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "claudedo-online",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"preview": "node .output/server/index.mjs",
"migrate": "tsx server/db/migrate.ts",
"test": "vitest run",
"provision:zitadel": "tsx scripts/provision-zitadel.ts"
},
"dependencies": {
"@kuns/zitadel-auth": "file:../kuns-zitadel/js",
"jose": "^5.9.6",
"nuxt": "^4.4.8",
"oidc-client-ts": "^3.5.0",
"postgres": "^3.4.8",
"vue": "^3.5.0",
"vue-router": "^4.4.0"
},
"devDependencies": {
"tsx": "^4.21.0",
"vitest": "^2.1.0"
}
}