Full Vue 3 + Vite + TypeScript + Tailwind SPA replacing the vanilla JS static frontend. Includes router, Pinia stores (auth/tasks/calendar/devops), axios API client with all endpoints, UI components (Button/Card/Dialog/Badge/Input/etc), calendar grid with lane-packing algorithm and DnD support, SSE live feed, and all 11 views. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "cc-dashboard-web",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext .vue,.ts,.tsx",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"test:unit": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"vue": "^3.5.0",
|
|
"vue-router": "^4.3.0",
|
|
"pinia": "^2.2.0",
|
|
"@vueuse/core": "^11.0.0",
|
|
"axios": "^1.7.0",
|
|
"@tanstack/vue-query": "^5.51.0",
|
|
"date-fns": "^3.6.0",
|
|
"date-fns-tz": "^3.1.3",
|
|
"zod": "^3.23.8",
|
|
"vee-validate": "^4.13.2",
|
|
"@vee-validate/zod": "^4.13.2",
|
|
"vue-sonner": "^1.1.4",
|
|
"marked": "^12.0.0",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.1",
|
|
"tailwind-merge": "^2.4.0",
|
|
"radix-vue": "^1.9.9",
|
|
"@radix-icons/vue": "^1.0.0",
|
|
"lucide-vue-next": "^0.427.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^5.1.0",
|
|
"vite": "^5.4.0",
|
|
"typescript": "^5.5.0",
|
|
"vue-tsc": "^2.1.0",
|
|
"tailwindcss": "^3.4.10",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.4.41",
|
|
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
"@typescript-eslint/parser": "^7.18.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-plugin-vue": "^9.27.0",
|
|
"vitest": "^2.0.5",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"happy-dom": "^14.12.3",
|
|
"prettier": "^3.3.3"
|
|
}
|
|
}
|