Private
Public Access
1
0
Files
Kanban/package.json
Catherine Renelle 8c41b33313 Add 17 features: My Work view, card copy/numbering, calendar, bulk ops, custom fields, automations, webhooks, invites, import/export, and more
Features implemented across 6 batches:
- Batch A: Fix ColorPicker gradient sync, tenant custom logo, unarchive cards, board backgrounds
- Batch B: My Work view, card copy/duplicate, card numbering (BOARD-123)
- Batch C: Due date reminders (cron), card watching with notifications
- Batch D: Bulk card operations, column sorting, calendar view
- Batch E: Invite by link, board import/export (Pounce + Trello JSON)
- Batch F: Webhooks with HMAC signing, custom fields, automation rules engine

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-27 08:50:15 -05:00

53 lines
1.4 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",
"node-cron": "^3.0.3",
"marked": "^15.0.0",
"pino": "^10.3.1",
"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"
}
}