-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.15 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
{
"name": "dads-interview-bot",
"version": "1.3.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:ui": "playwright test",
"fallback:sync": "node scripts/extract-fallback-copy.mjs",
"ci-check": "npm run lint && npm run type-check && npm run build"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@sendgrid/mail": "^7.7.0",
"@supabase/supabase-js": "^2.45.4",
"autoprefixer": "10.4.20",
"lucide-react": "0.460.0",
"next": "14.2.5",
"openai": "4.58.1",
"postcss": "8.4.41",
"react": "18.3.1",
"react-dom": "18.3.1",
"resend": "3.3.0",
"tailwindcss": "3.4.7",
"zod": "3.23.8",
"zustand": "4.5.4"
},
"devDependencies": {
"@playwright/test": "1.46.1",
"@types/node": "20.11.30",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"prettier": "3.3.3",
"typescript": "5.6.2",
"vitest": "1.6.0"
}
}