-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "job-trackr",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"podman compose up -d\" \"next dev\"",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "npx tsx --env-file=.env.local db/seed.ts",
"db:migrate": "tsx --env-file=.env.local scripts/migrate-stage.ts"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.2",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@react-email/components": "^1.0.12",
"@react-email/render": "^2.0.8",
"@vercel/analytics": "^2.0.1",
"bcryptjs": "^3.0.3",
"canvas-confetti": "^1.9.4",
"date-fns": "^4.1.0",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.38.0",
"groq-sdk": "^1.1.2",
"lucide-react": "^1.12.0",
"next": "16.2.2",
"next-auth": "^5.0.0-beta.30",
"next-cloudinary": "^6.17.5",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.7",
"papaparse": "^5.5.3",
"pg": "^8.20.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-email": "^6.0.8",
"react-icons": "^5.6.0",
"recharts": "^3.8.1",
"sonner": "^2.0.7",
"zod": "^4.4.3"
},
"devDependencies": {
"@react-email/ui": "^6.0.8",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20",
"@types/nodemailer": "^8.0.0",
"@types/papaparse": "^5.5.2",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"dotenv": "^17.4.1",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "16.2.2",
"tailwindcss": "^4",
"typescript": "^5"
}
}