-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.2 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.2 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
{
"name": "vibecoder",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npx prisma generate && next build",
"start": "next start",
"db:push": "npx prisma db push",
"db:migrate": "npx prisma migrate deploy",
"db:studio": "npx prisma studio",
"db:seed": "npx tsx prisma/seed.ts",
"lint": "next lint"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.41",
"@ai-sdk/react": "^3.0.118",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/language": "^6.12.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.17",
"@codesandbox/sandpack-react": "^2.20.0",
"@google/genai": "^1.44.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@mozilla/readability": "^0.6.0",
"@prisma/client": "^6.9.0",
"@types/jsdom": "^28.0.0",
"ai": "^6.0.116",
"archiver": "^7.0.1",
"bcryptjs": "^3.0.2",
"bullmq": "^5.70.4",
"cheerio": "^1.2.0",
"clsx": "^2.1.1",
"ioredis": "^5.6.1",
"jose": "^6.0.11",
"jsdom": "^28.1.0",
"lucide-react": "^0.511.0",
"markmap-lib": "^0.18.12",
"markmap-view": "^0.18.12",
"next": "^16.1.6",
"nodemailer": "^8.0.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.7.2",
"react-syntax-highlighter": "^15.6.1",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.3.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/archiver": "^7.0.0",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^22.15.0",
"@types/nodemailer": "^7.0.11",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.0",
"postcss": "^8.5.0",
"prisma": "^6.9.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
}
}