subman-nextjs/package.json

62 lines
1.7 KiB
JSON
Raw Normal View History

2024-06-11 08:16:34 +00:00
{
"name": "subman-nextjs",
2024-06-12 12:48:37 +00:00
"type": "module",
2024-06-11 08:16:34 +00:00
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
2024-06-26 10:07:03 +00:00
"lint": "next lint",
"tailwind": "npx tailwindcss -i ./src/app/globals.css -o ./src/app/tailwind.css --watch"
2024-06-11 08:16:34 +00:00
},
"dependencies": {
2024-06-12 15:53:19 +00:00
"@hookform/resolvers": "^3.6.0",
2024-06-11 13:37:14 +00:00
"@prisma/client": "^5.15.0",
2024-06-13 10:11:09 +00:00
"@radix-ui/react-checkbox": "^1.0.4",
2024-06-26 20:52:33 +00:00
"@radix-ui/react-context-menu": "^2.2.1",
2024-06-19 21:22:13 +00:00
"@radix-ui/react-dialog": "^1.1.0",
2024-06-12 15:15:22 +00:00
"@radix-ui/react-dropdown-menu": "^2.0.6",
2024-06-14 09:42:31 +00:00
"@radix-ui/react-icons": "^1.3.0",
2024-06-12 15:53:19 +00:00
"@radix-ui/react-label": "^2.0.2",
2024-06-14 09:42:31 +00:00
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
2024-06-12 15:15:22 +00:00
"@radix-ui/react-slot": "^1.0.2",
2024-06-14 09:25:18 +00:00
"@radix-ui/react-toast": "^1.1.5",
2024-06-12 15:15:22 +00:00
"@tanstack/react-table": "^8.17.3",
2024-09-11 09:13:00 +00:00
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
2024-06-12 12:59:21 +00:00
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
2024-06-14 09:42:31 +00:00
"date-fns": "^3.6.0",
2024-06-12 12:59:21 +00:00
"lucide-react": "^0.394.0",
2024-06-11 13:37:14 +00:00
"next": "14.2.3",
2024-09-11 11:06:58 +00:00
"next-auth": "^4.24.7",
2024-06-20 22:31:48 +00:00
"next-themes": "^0.3.0",
2024-06-11 08:16:34 +00:00
"react": "^18",
2024-06-14 09:42:31 +00:00
"react-day-picker": "^8.10.1",
2024-06-12 12:59:21 +00:00
"react-dom": "^18",
2024-06-12 15:53:19 +00:00
"react-hook-form": "^7.51.5",
2024-06-26 10:07:03 +00:00
"recharts": "^2.12.7",
2024-06-12 12:59:21 +00:00
"tailwind-merge": "^2.3.0",
2024-06-12 15:53:19 +00:00
"tailwindcss-animate": "^1.0.7",
2024-09-11 11:06:58 +00:00
"ts-node": "^10.9.2",
2024-06-12 15:53:19 +00:00
"zod": "^3.23.8"
2024-06-11 08:16:34 +00:00
},
"devDependencies": {
2024-09-11 11:06:58 +00:00
"@types/node": "^20.16.5",
2024-06-11 08:16:34 +00:00
"@types/react": "^18",
"@types/react-dom": "^18",
2024-06-12 12:48:37 +00:00
"autoprefixer": "^10.4.19",
2024-06-11 13:37:14 +00:00
"eslint-config-next": "14.2.3",
2024-06-12 12:48:37 +00:00
"postcss": "^8.4.38",
2024-06-11 13:37:14 +00:00
"prisma": "^5.15.0",
2024-06-12 12:48:37 +00:00
"tailwindcss": "^3.4.4",
2024-06-11 13:37:14 +00:00
"typescript": "^5"
},
"overrides": {
"@radix-ui/react-dismissable-layer": "^1.0.5",
"@radix-ui/react-focus-scope": "^1.0.4"
2024-06-11 08:16:34 +00:00
}
}