tasko/package.json

105 lines
3.4 KiB
JSON
Raw Normal View History

2024-02-15 02:30:10 +00:00
{
"name": "tasko",
"version": "0.1.0",
"private": true,
"scripts": {
2024-10-21 20:48:55 +00:00
"dev": "next dev --turbo",
"debug": "NODE_OPTIONS='--inspect' next dev --turbo",
2024-02-15 02:30:10 +00:00
"build": "next build",
"start": "next start",
2024-12-19 02:39:25 +00:00
"lint": "next lint && tsc --noemit",
"postinstall": "prisma generate --no-engine",
"format": "prettier --check --ignore-path .prettierignore .",
2024-12-28 22:36:50 +00:00
"format:fix": "prettier --write --ignore-path .prettierignore .",
"test": "jest",
2024-12-29 23:55:47 +00:00
"coverage": "jest --coverage",
"generate-junit": "JEST_JUNIT_CLASSNAME=\"{filepath}\" jest --reporters=jest-junit"
2024-02-15 02:30:10 +00:00
},
"dependencies": {
"@arcjet/next": "^1.0.0-alpha.34",
"@clerk/nextjs": "^6.9.7",
"@hello-pangea/dnd": "^17.0.0",
2024-11-17 21:28:51 +00:00
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "^15.1.3",
"@prisma/client": "^6.2.1",
"@prisma/extension-accelerate": "^1.2.1",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.3",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.3",
2024-02-15 02:30:10 +00:00
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.6",
"@radix-ui/react-visually-hidden": "^1.1.0",
2024-11-27 05:47:14 +00:00
"@sentry/nextjs": "8",
"@tanstack/react-query": "^5.62.16",
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.3",
2024-02-15 02:30:10 +00:00
"lodash": "^4.17.21",
"lucide-react": "^0.469.0",
"next": "^15.1.3",
"react": "^19.0.0",
"react-day-picker": "^9.5.0",
"react-dom": "^19.0.0",
"sharp": "^0.33.5",
"sonner": "^1.7.1",
"stripe": "^17.4.0",
"tailwind-merge": "^2.6.0",
2024-02-15 02:30:10 +00:00
"tailwindcss-animate": "^1.0.7",
"unsplash-js": "^7.0.19",
"usehooks-ts": "^3.1.0",
"zod": "^3.24.1",
"zustand": "^5.0.3"
2024-02-15 02:30:10 +00:00
},
"devDependencies": {
"@codecov/nextjs-webpack-plugin": "^1.7.0",
"@content-collections/core": "^0.8.0",
2024-11-17 21:28:51 +00:00
"@content-collections/mdx": "^0.2.0",
"@content-collections/next": "^0.2.4",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.16.0",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@next/eslint-plugin-next": "15.1.3",
2024-11-17 21:28:51 +00:00
"@tailwindcss/typography": "^0.5.15",
2024-12-28 22:36:50 +00:00
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
2024-12-19 02:39:25 +00:00
"@types/compression": "^1.7.5",
"@types/dompurify": "^3",
2024-12-28 22:36:50 +00:00
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.14",
2025-01-02 21:49:07 +00:00
"@types/mdx": "^2.0.13",
"@types/node": "^22.10.5",
"@types/react": "^19.0.3",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "^19.0.0-beta-55955c9-20241229",
"eslint": "^9.16.0",
"eslint-config-next": "15.1.4",
2024-02-16 01:27:24 +00:00
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-compiler": "^19.0.0-beta-55955c9-20241229",
"fluid-tailwind": "^1.0.4",
2024-12-28 22:36:50 +00:00
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"prisma": "^6.2.1",
"tailwindcss": "^3.4.16",
2024-12-28 22:36:50 +00:00
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"packageManager": "yarn@4.5.3"
2024-02-15 02:30:10 +00:00
}