initial scaffold: vue 3 + vite 8 + shadcn-vue + tailwind 4

Wires pinia, vue-router, vue-i18n, vee-validate/zod, shadcn-vue
(reka-ui), tailwind 4 via @tailwindcss/vite. Sample HomeView
proves i18n + pinia + tailwind. Optional nostr/lnbits feature
folders ship as documentation only — deps install on opt-in.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Padreug 2026-05-27 10:05:39 +02:00
commit 0054f3ab80
26 changed files with 3347 additions and 0 deletions

45
package.json Normal file
View file

@ -0,0 +1,45 @@
{
"name": "boilerplate-website",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"format": "prettier --write \"src/**/*.{js,ts,vue,json,css,html,md}\"",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {
"@lucide/vue": "^1.16.0",
"@vee-validate/zod": "^4.15.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"pinia": "^3.0.4",
"reka-ui": "^2.9.8",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"vee-validate": "^4.15.1",
"vue": "^3.5.34",
"vue-i18n": "^11.4.4",
"vue-router": "^5.0.7",
"zod": "^3.25.76"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@tsconfig/node22": "^22.0.5",
"@types/node": "^25.9.1",
"@vitejs/plugin-vue": "^6.0.7",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.4.0",
"eslint-plugin-vue": "^10.9.1",
"prettier": "^3.8.3",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vue-tsc": "^3.3.2"
}
}