- Replaced broken Gantt chart with working Kanban board - Added task types: idea, task, bug, research, plan - Added status columns: backlog, in-progress, review, done - Added priority levels: low, medium, high, urgent - Implemented 1-to-many threaded comments/notes system - Added working CRUD for projects and tasks - Added shadcn/ui components: badge, button, card, dialog, label, select, table, textarea - Data persistence with Zustand + localStorage - Fixed all UI overlap issues
52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "gantt-board",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-dialog": "^1.1.15",
|
|
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
"@radix-ui/react-label": "^2.1.8",
|
|
"@radix-ui/react-select": "^2.2.6",
|
|
"firebase": "^12.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@radix-ui/react-slot": "^1.2.4",
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/frappe-gantt": "^0.9.0",
|
|
"@types/node": "^20.19.33",
|
|
"@types/react": "^19.2.14",
|
|
"@types/react-dom": "^19",
|
|
"autoprefixer": "^10.4.24",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"date-fns": "^4.1.0",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "^16.1.6",
|
|
"framer-motion": "^12.34.1",
|
|
"frappe-gantt": "^1.2.1",
|
|
"lucide-react": "^0.574.0",
|
|
"next": "^15.5.12",
|
|
"postcss": "^8.5.6",
|
|
"react": "^19.2.4",
|
|
"react-dom": "^19.2.4",
|
|
"recharts": "^3.7.0",
|
|
"tailwind-merge": "^3.4.1",
|
|
"tailwindcss": "^4.1.18",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3",
|
|
"zustand": "^5.0.11"
|
|
},
|
|
"description": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).",
|
|
"main": "index.js",
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs"
|
|
}
|