-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "job-application-tracker",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:seed": "tsx prisma/seed.mts",
"postinstall": "prisma generate"
},
"dependencies": {
"@prisma/adapter-pg": "^7.10.0",
"@prisma/client": "^7.10.0",
"clsx": "^2.1.1",
"docx": "^9.7.1",
"jose": "^6.2.10",
"lucide-react": "^1.34.0",
"mammoth": "^1.12.1",
"next": "^15.5.24",
"nodemailer": "^9.0.6",
"openai": "^6.49.0",
"pg": "^8.23.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"unpdf": "^1.7.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^26.3.0",
"@types/nodemailer": "^8.0.1",
"@types/pg": "^8.23.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"dotenv": "^17.4.2",
"postcss": "^8.5.26",
"prisma": "^7.10.0",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"typescript": "^5.9.3"
}
}