-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.57 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.57 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
{
"name": "vibe-scaffold",
"version": "1.0.0",
"description": "A Next.js application with a multi-step wizard interface that uses AI-powered chat to gather requirements and generate comprehensive technical specification documents.",
"scripts": {
"dev": "next dev",
"build": "npm run cleanup-test-data && next build",
"cleanup-test-data": "node scripts/cleanup-test-data.mjs",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@ai-sdk/anthropic": "^2.0.44",
"@ai-sdk/openai": "^2.0.67",
"@ai-sdk/react": "^2.0.93",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vercel/analytics": "^1.5.0",
"@vercel/postgres": "^0.10.0",
"ai": "^5.0.93",
"autoprefixer": "^10.4.22",
"jszip": "^3.10.1",
"lucide-react": "^0.554.0",
"next": "^16.0.7",
"postcss": "^8.5.6",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-markdown": "^10.1.0",
"resend": "^6.5.2",
"tailwindcss": "^3.4.18",
"typescript": "^5.9.3",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.10",
"@vitest/ui": "^4.0.10",
"happy-dom": "^20.0.10",
"vitest": "^4.0.10"
}
}