-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.65 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.65 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
{
"name": "dev-recruit-ai",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:seed": "tsx prisma/seed.ts",
"prebuild": "npm run db:generate",
"devAi": "pnpx @ai-sdk/devtools"
},
"dependencies": {
"@ai-sdk/groq": "^3.0.31",
"@aws-sdk/client-s3": "^3.1016.0",
"@base-ui/react": "^1.3.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@monaco-editor/react": "^4.7.0",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@uiw/react-textarea-code-editor": "^3.1.1",
"@varlock/nextjs-integration": "^0.3.1",
"@varlock/pass-plugin": "^0.0.5",
"ai": "^6.0.138",
"better-auth": "^1.5.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.1.1",
"date-fns": "4.1.0",
"emblor": "^1.4.8",
"lucide-react": "^1.6.0",
"monaco-editor": "^0.55.1",
"next": "^16.2.1",
"next-themes": "^0.4.6",
"pg": "^8.20.0",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.4",
"react-aria-components": "^1.16.0",
"react-dom": "^19.2.4",
"react-hook-form": "^7.72.0",
"shadcn": "^4.1.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"unpdf": "^1.4.0",
"use-debounce": "^10.1.0",
"varlock": "^0.6.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@ai-sdk/devtools": "^0.0.15",
"@eslint/eslintrc": "^3.3.5",
"@next/eslint-plugin-next": "^16.2.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "4.1.1",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"eslint-plugin-react-hooks": "^7.0.1",
"happy-dom": "^20.8.8",
"jsdom": "^29.0.1",
"postcss": "^8.5.8",
"prisma": "^7.5.0",
"shadcn": "^4.1.0",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
},
"overrides": {
"next": {
"@next/env": "npm:@varlock/nextjs-integration"
},
"other-dep": {
"dotenv": "npm:varlock"
}
}
}