-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.23 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
{
"name": "mailbuddy",
"version": "0.6",
"scripts": {
"dev": "next dev --turbopack",
"export": "next export",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"biome-write": "bun x @biomejs/biome format --write .",
"lint": "biome check"
},
"dependencies": {
"@faker-js/faker": "^9.9.0",
"@floating-ui/react-dom": "^2.1.6",
"@prisma/client": "^6.19.0",
"@prisma/extension-accelerate": "^1.3.0",
"@prisma/extension-optimize": "^1.1.8",
"@prisma/instrumentation": "^6.19.0",
"@react-email/components": "^0.0.36",
"@tanstack/react-query": "^5.90.12",
"@types/html-to-text": "^9.0.4",
"@types/qrcode": "^1.5.6",
"@types/uuid": "^10.0.0",
"@upstash/redis": "^1.35.7",
"@upstash/vector": "^1.2.2",
"@xenova/transformers": "^2.17.2",
"better-auth": "^1.4.5",
"classnames": "^2.5.1",
"compressorjs": "^1.2.1",
"dayjs": "^1.11.19",
"dompurify": "^3.3.0",
"googleapis": "^148.0.0",
"groq-sdk": "^0.19.0",
"html-to-text": "^9.0.5",
"ioredis": "^5.8.2",
"next": "^15.5.7",
"nuqs": "^2.8.3",
"openai": "^4.104.0",
"p-limit": "^6.2.0",
"pg": "^8.16.3",
"postcss": "^8.5.6",
"postcss-preset-env": "^9.6.0",
"prettier": "3.4.2",
"prisma": "^6.19.0",
"prismjs": "^1.30.0",
"qrcode": "^1.5.4",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "^5.5.0",
"resend": "^4.8.0",
"sass": "^1.94.2",
"sharp": "^0.34.5",
"superjson": "^2.2.6",
"uuid": "^11.1.0",
"zod": "^3.25.76",
"zustand": "^5.0.9"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@csstools/postcss-global-data": "^2.1.1",
"@types/node": "20.17.23",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"postcss-custom-media": "^10.0.8",
"postcss-flexbugs-fixes": "^5.0.2",
"typescript": "5.8.2"
},
"overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2"
}
}