This repository was archived by the owner on Mar 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.51 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.51 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
{
"name": "second-brain",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"seed": "ts-node --project prisma/tsconfig.json prisma/seed.ts",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@heroui/react": "^3.0.1",
"@heroui/styles": "^3.0.1",
"@heroui/theme": "^2.4.26",
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^6.1.0",
"@react-pdf/renderer": "^4.3.2",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"framer-motion": "^11.16.1",
"next": "15.1.3",
"next-auth": "5.0.0-beta.30",
"next-intl": "^4.8.3",
"next-themes": "^0.4.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.53.1",
"react-icons": "^5.3.0",
"resend": "^6.9.4",
"tailwind-merge": "^3.5.0",
"tesseract.js": "^7.0.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.2",
"@types/node": "^20",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"eslint": "^8",
"eslint-config-next": "15.1.3",
"postcss": "^8.5.8",
"prisma": "^6.1.0",
"tailwindcss": "^4.0.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"overrides": {
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma",
"sharp"
]
}
}