2024-07-19 09:10:46 -05:00
|
|
|
{
|
|
|
|
"name": "tech_tracker_web",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"private": true,
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
|
|
|
"build": "next build",
|
|
|
|
"db:generate": "drizzle-kit generate",
|
|
|
|
"db:migrate": "drizzle-kit migrate",
|
|
|
|
"db:push": "drizzle-kit push",
|
|
|
|
"db:studio": "drizzle-kit studio",
|
|
|
|
"dev": "next dev",
|
|
|
|
"lint": "next lint",
|
2024-07-20 22:35:47 -05:00
|
|
|
"start": "next start",
|
2024-07-21 19:18:43 -05:00
|
|
|
"go": "git pull && next build && next start"
|
2024-07-19 09:10:46 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-07-22 15:17:39 -05:00
|
|
|
"@hookform/resolvers": "^3.9.0",
|
|
|
|
"@radix-ui/react-checkbox": "^1.1.1",
|
|
|
|
"@radix-ui/react-dialog": "^1.1.1",
|
|
|
|
"@radix-ui/react-dropdown-menu": "^2.1.1",
|
|
|
|
"@radix-ui/react-label": "^2.1.0",
|
|
|
|
"@radix-ui/react-popover": "^1.1.1",
|
2024-07-21 19:14:36 -05:00
|
|
|
"@radix-ui/react-progress": "^1.1.0",
|
2024-07-22 15:17:39 -05:00
|
|
|
"@radix-ui/react-radio-group": "^1.2.0",
|
|
|
|
"@radix-ui/react-select": "^2.1.1",
|
|
|
|
"@radix-ui/react-slot": "^1.1.0",
|
|
|
|
"@radix-ui/react-switch": "^1.1.0",
|
|
|
|
"@radix-ui/react-toggle": "^1.1.0",
|
|
|
|
"@radix-ui/react-toggle-group": "^1.1.0",
|
|
|
|
"@radix-ui/react-tooltip": "^1.1.2",
|
2024-07-19 09:10:46 -05:00
|
|
|
"@t3-oss/env-nextjs": "^0.10.1",
|
2024-07-19 09:30:16 -05:00
|
|
|
"class-variance-authority": "^0.7.0",
|
|
|
|
"clsx": "^2.1.1",
|
2024-07-22 15:17:39 -05:00
|
|
|
"cmdk": "^1.0.0",
|
|
|
|
"date-fns": "^3.6.0",
|
2024-07-19 09:10:46 -05:00
|
|
|
"drizzle-orm": "^0.30.10",
|
2024-07-20 13:00:27 -05:00
|
|
|
"geist": "^1.3.1",
|
2024-07-19 09:30:16 -05:00
|
|
|
"lucide-react": "^0.411.0",
|
2024-07-20 13:00:27 -05:00
|
|
|
"mysql2": "^3.10.3",
|
|
|
|
"next": "^14.2.5",
|
2024-07-19 09:10:46 -05:00
|
|
|
"next-auth": "5.0.0-beta.19",
|
2024-07-22 15:17:39 -05:00
|
|
|
"next-themes": "^0.3.0",
|
2024-07-20 22:35:47 -05:00
|
|
|
"pm2": "^5.4.2",
|
2024-07-19 09:10:46 -05:00
|
|
|
"react": "^18.3.1",
|
2024-07-23 23:46:27 -05:00
|
|
|
"react-day-picker": "^9.0.3",
|
2024-07-19 09:10:46 -05:00
|
|
|
"react-dom": "^18.3.1",
|
2024-07-22 15:17:39 -05:00
|
|
|
"react-hook-form": "^7.52.1",
|
2024-07-19 15:58:24 -05:00
|
|
|
"server-only": "^0.0.1",
|
2024-07-20 13:34:13 -05:00
|
|
|
"sharp": "^0.33.4",
|
2024-07-22 15:17:39 -05:00
|
|
|
"sonner": "^1.5.0",
|
2024-07-19 09:30:16 -05:00
|
|
|
"tailwind-merge": "^2.4.0",
|
|
|
|
"tailwindcss-animate": "^1.0.7",
|
2024-07-22 15:17:39 -05:00
|
|
|
"vaul": "^0.9.1",
|
2024-07-20 13:00:27 -05:00
|
|
|
"zod": "^3.23.8"
|
2024-07-19 09:10:46 -05:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-07-23 23:46:27 -05:00
|
|
|
"@types/eslint": "^8.56.11",
|
|
|
|
"@types/node": "^20.14.12",
|
2024-07-19 09:10:46 -05:00
|
|
|
"@types/react": "^18.3.3",
|
|
|
|
"@types/react-dom": "^18.3.0",
|
2024-07-23 23:46:27 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "^7.17.0",
|
|
|
|
"@typescript-eslint/parser": "^7.17.0",
|
2024-07-19 09:10:46 -05:00
|
|
|
"drizzle-kit": "^0.21.4",
|
|
|
|
"eslint": "^8.57.0",
|
2024-07-20 13:00:27 -05:00
|
|
|
"eslint-config-next": "^14.2.5",
|
2024-07-19 09:10:46 -05:00
|
|
|
"eslint-plugin-drizzle": "^0.2.3",
|
|
|
|
"postcss": "^8.4.39",
|
2024-07-20 13:00:27 -05:00
|
|
|
"prettier": "^3.3.3",
|
2024-07-19 09:10:46 -05:00
|
|
|
"prettier-plugin-tailwindcss": "^0.6.5",
|
2024-07-20 13:00:27 -05:00
|
|
|
"tailwindcss": "^3.4.6",
|
2024-07-23 23:46:27 -05:00
|
|
|
"typescript": "^5.5.4"
|
2024-07-19 09:10:46 -05:00
|
|
|
},
|
|
|
|
"ct3aMetadata": {
|
|
|
|
"initVersion": "7.36.1"
|
|
|
|
},
|
2024-07-20 14:47:54 -05:00
|
|
|
"packageManager": "pnpm@9.5.0"
|
2024-07-19 09:10:46 -05:00
|
|
|
}
|