095d9756a8
Add full CRUD + UI for all card sub-resources (tags/labels, assignees, checklists with items, comments with markdown, file attachments). Restructure CardModal into a two-column layout with lazy-loaded data. Upgrade card thumbnails with named label pills, urgency-colored due date badges, checklist progress indicators, and SVG icons. Add board categories with filtering on the listing page. Include markdown rendering with DOMPurify sanitization and .prose CSS styles. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "pounce",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"prepare": "svelte-kit sync || echo ''",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
|
"db:generate": "prisma generate",
|
|
"db:push": "prisma db push",
|
|
"db:migrate": "prisma migrate dev",
|
|
"db:migrate:deploy": "prisma migrate deploy",
|
|
"db:seed": "tsx prisma/seed.ts",
|
|
"db:studio": "prisma studio",
|
|
"start": "node build/index.js"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^6.6.0",
|
|
"@sveltejs/adapter-node": "^5.2.0",
|
|
"@sveltejs/kit": "^2.50.2",
|
|
"@types/dompurify": "^3.0.5",
|
|
"bcrypt": "^6.0.0",
|
|
"date-fns": "^4.1.0",
|
|
"dompurify": "^3.3.1",
|
|
"express": "^5.1.0",
|
|
"marked": "^15.0.0",
|
|
"socket.io": "^4.8.0",
|
|
"socket.io-client": "^4.8.0",
|
|
"svelte-dnd-action": "^0.9.52",
|
|
"zod": "^3.24.0"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/vite-plugin-svelte": "^6.2.4",
|
|
"@tailwindcss/vite": "^4.1.0",
|
|
"@types/bcrypt": "^5.0.2",
|
|
"@types/express": "^5.0.0",
|
|
"autoprefixer": "^10.4.20",
|
|
"prisma": "^6.6.0",
|
|
"svelte": "^5.51.0",
|
|
"svelte-check": "^4.3.6",
|
|
"tailwindcss": "^4.1.0",
|
|
"tsx": "^4.19.0",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.3.1"
|
|
}
|
|
}
|