-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 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": "syllab.ai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"postinstall": "prisma generate",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:studio": "prisma studio",
"db:example": "tsx index.ts"
},
"dependencies": {
"@ai-sdk/groq": "^3.0.22",
"@prisma/adapter-pg": "^6.1.0",
"@prisma/client": "^7.3.0",
"@vercel/blob": "^0.23.4",
"ai": "^6.0.79",
"bcryptjs": "^2.4.3",
"dotenv": "^16.4.7",
"groq-sdk": "^0.37.0",
"katex": "^0.16.33",
"mammoth": "^1.11.0",
"next": "^16.1.5",
"next-auth": "^5.0.0-beta.30",
"pdfjs-dist": "^5.4.624",
"pg": "^8.13.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"prisma": "^7.3.0",
"tailwindcss": "^4",
"tsx": "^4.20.0",
"typescript": "^5"
}
}