2024-02-15 02:30:10 +00:00
|
|
|
{
|
|
|
|
"name": "tasko",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"dev": "next dev",
|
|
|
|
"build": "next build",
|
|
|
|
"start": "next start",
|
|
|
|
"lint": "next lint",
|
2024-03-27 00:58:59 +00:00
|
|
|
"postinstall": "prisma generate --no-engine",
|
2024-02-16 01:27:24 +00:00
|
|
|
"format": "prettier --check --ignore-path .gitignore .",
|
|
|
|
"format:fix": "prettier --write --ignore-path .gitignore ."
|
2024-02-15 02:30:10 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-03-21 21:15:27 +00:00
|
|
|
"@clerk/nextjs": "^5.0.0-beta.35",
|
2024-03-25 17:38:19 +00:00
|
|
|
"@hello-pangea/dnd": "^16.6.0",
|
2024-03-22 18:05:18 +00:00
|
|
|
"@liveblocks/client": "^1.11.0",
|
2024-03-21 18:57:14 +00:00
|
|
|
"@liveblocks/node": "^1.11.0",
|
2024-03-24 21:18:00 +00:00
|
|
|
"@liveblocks/react": "^1.11.0",
|
2024-03-02 02:48:39 +00:00
|
|
|
"@microsoft/eslint-formatter-sarif": "^3.0.0",
|
2024-03-13 17:45:44 +00:00
|
|
|
"@prisma/client": "^5.11.0",
|
2024-03-17 04:48:01 +00:00
|
|
|
"@prisma/extension-accelerate": "^1.0.0",
|
2024-02-15 02:30:10 +00:00
|
|
|
"@radix-ui/react-accordion": "^1.1.2",
|
|
|
|
"@radix-ui/react-avatar": "^1.0.4",
|
|
|
|
"@radix-ui/react-dialog": "^1.0.5",
|
|
|
|
"@radix-ui/react-label": "^2.0.2",
|
|
|
|
"@radix-ui/react-popover": "^1.0.7",
|
|
|
|
"@radix-ui/react-separator": "^1.0.3",
|
|
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
|
|
"@radix-ui/react-tooltip": "^1.0.7",
|
2024-03-25 17:37:58 +00:00
|
|
|
"@tanstack/react-query": "^5.28.8",
|
2024-03-27 00:49:35 +00:00
|
|
|
"@vercel/analytics": "^1.2.2",
|
|
|
|
"@vercel/speed-insights": "^1.0.10",
|
2024-02-15 02:30:10 +00:00
|
|
|
"class-variance-authority": "^0.7.0",
|
|
|
|
"clsx": "^2.1.0",
|
2024-03-19 17:25:35 +00:00
|
|
|
"date-fns": "^3.6.0",
|
2024-02-15 02:30:10 +00:00
|
|
|
"lodash": "^4.17.21",
|
2024-03-22 18:06:02 +00:00
|
|
|
"lucide-react": "^0.363.0",
|
2024-03-20 19:24:28 +00:00
|
|
|
"next": "14.1.4",
|
2024-03-21 21:15:27 +00:00
|
|
|
"react": "^18.2.0",
|
2024-03-15 02:42:49 +00:00
|
|
|
"react-day-picker": "^8.10.0",
|
2024-03-21 21:15:27 +00:00
|
|
|
"react-dom": "^18.2.0",
|
2024-03-25 17:38:27 +00:00
|
|
|
"sonner": "^1.4.41",
|
2024-03-22 18:05:03 +00:00
|
|
|
"stripe": "^14.22.0",
|
2024-03-18 17:51:27 +00:00
|
|
|
"tailwind-merge": "^2.2.2",
|
2024-02-15 02:30:10 +00:00
|
|
|
"tailwindcss-animate": "^1.0.7",
|
|
|
|
"unsplash-js": "^7.0.19",
|
2024-03-22 18:05:28 +00:00
|
|
|
"usehooks-ts": "^3.0.2",
|
2024-02-15 02:30:10 +00:00
|
|
|
"zod": "^3.22.4",
|
2024-03-04 17:20:08 +00:00
|
|
|
"zustand": "^4.5.2"
|
2024-02-15 02:30:10 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-03-20 19:24:30 +00:00
|
|
|
"@next/eslint-plugin-next": "^14.1.4",
|
2024-03-12 17:52:17 +00:00
|
|
|
"@types/lodash": "^4.17.0",
|
2024-02-15 02:30:10 +00:00
|
|
|
"@types/node": "^20",
|
|
|
|
"@types/react": "^18",
|
|
|
|
"@types/react-dom": "^18",
|
2024-03-26 17:54:32 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.4.0",
|
2024-03-26 18:58:24 +00:00
|
|
|
"@typescript-eslint/parser": "^7.4.0",
|
2024-03-21 18:57:11 +00:00
|
|
|
"autoprefixer": "^10.4.19",
|
2024-02-26 17:18:53 +00:00
|
|
|
"eslint": "^8.57.0",
|
2024-03-20 19:24:22 +00:00
|
|
|
"eslint-config-next": "^14.1.4",
|
2024-02-16 01:27:24 +00:00
|
|
|
"eslint-config-prettier": "^9.1.0",
|
2024-02-17 19:43:59 +00:00
|
|
|
"postcss": "^8",
|
2024-02-16 01:27:24 +00:00
|
|
|
"prettier": "^3.2.5",
|
2024-03-27 17:32:40 +00:00
|
|
|
"prettier-plugin-tailwindcss": "^0.5.13",
|
2024-03-12 17:52:42 +00:00
|
|
|
"prisma": "^5.11.0",
|
2024-02-15 02:30:10 +00:00
|
|
|
"tailwindcss": "^3.3.0",
|
|
|
|
"typescript": "^5"
|
|
|
|
}
|
|
|
|
}
|