- Dashboard redesign as command center with filters, quick actions, inline approve/reject - Reusable components: BookingRow, BookingFilters, ActionMenu, BookingPreviewModal, BookingEditModal - Calendar: drag & drop reschedule, eventClick preview modal, grid/list toggle - Mobile: segmented control bookings/calendar toggle, compact pills, responsive layout - Collapsible filters with active count badge - Smart menu positioning with Teleport - Calendar/list bidirectional data sync - Navigation: unified History page, removed AdminPending - Google Calendar OAuth integration - Dark mode contrast improvements, breadcrumb navigation - useLocalStorage composable for state persistence Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
1018 B
JSON
37 lines
1018 B
JSON
{
|
|
"name": "space-booking-frontend",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
|
"typecheck": "vue-tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@fullcalendar/core": "^6.1.0",
|
|
"@fullcalendar/daygrid": "^6.1.0",
|
|
"@fullcalendar/interaction": "^6.1.0",
|
|
"@fullcalendar/list": "^6.1.20",
|
|
"@fullcalendar/timegrid": "^6.1.0",
|
|
"@fullcalendar/vue3": "^6.1.0",
|
|
"axios": "^1.6.0",
|
|
"chart.js": "^4.5.1",
|
|
"lucide-vue-next": "^0.563.0",
|
|
"pinia": "^2.1.0",
|
|
"vue": "^3.4.0",
|
|
"vue-router": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^5.0.0",
|
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
"@vue/tsconfig": "^0.5.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-plugin-vue": "^9.19.0",
|
|
"typescript": "^5.6.0",
|
|
"vite": "^5.0.0",
|
|
"vue-tsc": "^2.0.0"
|
|
}
|
|
}
|