-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 907 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 907 Bytes
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
{
"name": "thinktree",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "prisma generate",
"db:push": "prisma db push"
},
"dependencies": {
"@prisma/client": "^6.6.0",
"clsx": "^2.1.1",
"katex": "^0.16.43",
"lucide-react": "^0.511.0",
"next": "14.2.25",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.1.0",
"reactflow": "^11.11.4",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"zustand": "^4.5.5"
},
"devDependencies": {
"@types/node": "^20.17.30",
"@types/react": "^18.3.21",
"@types/react-dom": "^18.3.7",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.3",
"prisma": "^6.6.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
}
}