-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.97 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "scoutlane",
"version": "0.1.0",
"private": true,
"description": "AI-powered recruitment platform",
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"scripts": {
"dev": "next dev --turbo",
"build": "next build --webpack",
"start": "next start",
"worker:resume": "tsx src/server/workers/resume.ts",
"worker:emails": "tsx src/server/workers/emails.ts",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:e2e": "playwright test",
"db:seed": "prisma db seed",
"db:studio": "prisma studio",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:deploy": "prisma migrate deploy",
"prisma:reset": "prisma migrate reset",
"postinstall": "prisma generate",
"migrate:deploy": "prisma migrate deploy",
"generate": "prisma generate"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.2",
"@dnd-kit/core": "6.3.0",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@google-cloud/storage": "^7.19.0",
"@hookform/resolvers": "5.2.1",
"@napi-rs/canvas": "^1.0.0",
"@prisma/adapter-pg": "7.7.0",
"@prisma/client": "7.7.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-slot": "1.2.4",
"@tailwindcss/postcss": "4.2.3",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"lucide-react": "1.14.0",
"mammoth": "^1.12.0",
"next": "16.2.6",
"next-auth": "5.0.0-beta.30",
"openai": "^6.0.0",
"pdf-parse": "^2.4.5",
"pdfjs-dist": "5.4.296",
"pg": "8.19.0",
"pg-boss": "^12.18.2",
"postcss": "8.5.13",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-hook-form": "7.74.0",
"recharts": "3.8.0",
"resend": "6.12.2",
"sanitize-html": "^2.17.4",
"sonner": "^2.0.7",
"tailwind-merge": "3.5.0",
"tailwindcss": "4.2.3",
"zod": "4.4.2"
},
"devDependencies": {
"@faker-js/faker": "^10.4.0",
"@next/eslint-plugin-next": "^16.2.6",
"@playwright/test": "^1.60.0",
"@testing-library/jest-dom": "6.9.0",
"@testing-library/react": "^16.3.2",
"@types/node": "25.6.1",
"@types/pdf-parse": "^1.1.5",
"@types/pg": "8.18.0",
"@types/react": "19.2.13",
"@types/react-dom": "19.2.2",
"@types/sanitize-html": "^2.16.1",
"@vitejs/plugin-react": "6.0.0",
"dotenv": "17.4.1",
"eslint": "9.39.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"prisma": "7.7.0",
"tsx": "4.20.6",
"typescript": "6.0.2",
"typescript-eslint": "^8.59.3",
"vitest": "4.1.4"
},
"prisma": {
"seed": "npx tsx prisma/seed.ts"
},
"pnpm": {
"overrides": {
"@hono/node-server@<1.19.13": ">=1.19.13",
"@tootallnate/once@<3.0.1": ">=3.0.1",
"postcss@<8.5.10": ">=8.5.10"
}
}
}