Authentication: - Laravel Fortify + Sanctum with Inertia views - RBAC middleware (admin, project_owner, team_member, viewer) - Retro terminal-styled login/register/forgot-password pages Metro Map (core UI): - D3.js zoomable SVG canvas with metro line rendering - Station nodes with glow-on-hover, status coloring, tooltips - Breadcrumb navigation for multi-level drill-down - Node preview panel with zoom-in action - C64-style CLI bar with blinking cursor at bottom Backend services: - ProjectService (CRUD, phase transitions, park/stop, audit logging) - ThemaService (CRUD with audit) - MapDataService (strategy map L1, project map L2) - Thin controllers: MapController, ProjectController, ThemaController - 32 routes total (auth + app + API) Style foundation: - Retro-futurism theme: VT323, Press Start 2P, IBM Plex Mono fonts - Dark palette with cyan/orange/green/purple neon accents - Comprehensive seed data (4 themes, 12 projects, commitments, deps) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
29 lines
775 B
JSON
29 lines
775 B
JSON
{
|
|
"$schema": "https://www.schemastore.org/package.json",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"dev": "vite"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.2.2",
|
|
"axios": ">=1.11.0 <=1.14.0",
|
|
"concurrently": "^9.0.1",
|
|
"laravel-vite-plugin": "^3.0.0",
|
|
"tailwindcss": "^4.2.2",
|
|
"vite": "^8.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@fontsource/ibm-plex-mono": "^5.2.7",
|
|
"@fontsource/press-start-2p": "^5.2.7",
|
|
"@fontsource/vt323": "^5.2.7",
|
|
"@inertiajs/vue3": "^3.0.1",
|
|
"@vitejs/plugin-vue": "^6.0.5",
|
|
"@vueuse/core": "^14.2.1",
|
|
"d3": "^7.9.0",
|
|
"pinia": "^3.0.4",
|
|
"vue": "^3.5.31"
|
|
}
|
|
}
|