Reorganize the Web App to match the GsmNode project layout: a Go backend-for-frontend in server/ that embeds the built SPA and reverse-proxies /api/* to the API Server, with the Vue 3 + Vite frontend moved into web/. - Move all frontend files into web/ (history preserved via renames) - Point vite build output at ../server/dist for Go embedding - Add server/ Go BFF (main.go, go.mod, .env.example, Run-WebApp.ps1) - Drop Docker/nginx deploy (Dockerfile, docker-compose.yml, nginx.conf.template, .dockerignore) in favor of the BFF, matching GsmNode - Update .claude/launch.json to run the dev server from web/ - Rewrite README.md for the new layout Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
22 lines
412 B
JSON
22 lines
412 B
JSON
{
|
|
"name": "drivervault-web",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.3.2",
|
|
"@vitejs/plugin-vue": "^6.0.7",
|
|
"tailwindcss": "^4.3.2",
|
|
"vite": "^8.1.1"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.5.39",
|
|
"vue-router": "^4.6.4"
|
|
}
|
|
}
|