claude-test/frontend/package.json
Martin Švrčina 6cad42dbac Scaffold project structure: .NET 8 Clean Architecture + Vue 3 Vuetify 3
- Solution with API, Application, Domain, Infrastructure projects
- Clean Architecture project references configured
- Vue 3 + Vuetify 3 + TypeScript frontend scaffolded

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-17 00:21:58 +01:00

38 lines
870 B
JSON

{
"name": "vuetify-project",
"private": true,
"type": "module",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force"
},
"dependencies": {
"@fontsource/roboto": "^5.2.10",
"@mdi/font": "7.4.47",
"vue": "^3.5.30",
"vuetify": "^4.0.2"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.5",
"@types/node": "^24.12.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vue/tsconfig": "^0.9.0",
"npm-run-all2": "^8.0.4",
"sass-embedded": "^1.98.0",
"typescript": "~5.9.3",
"unplugin-fonts": "^1.4.0",
"vite": "^8.0.0",
"vite-plugin-vuetify": "^2.1.3",
"vue-tsc": "^3.2.5"
},
"overrides": {
"unplugin-fonts": {
"vite": "^8.0.0"
}
}
}