-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.55 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
76
77
78
79
80
81
82
83
84
85
86
{
"name": "hedwig-mail",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate:pg",
"db:migrate": "tsx --env-file=.env.local lib/db/migrate.ts",
"db:migrate:prod": "tsx lib/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"worker": "tsx --env-file=.env.local worker.ts",
"worker:bootstrap": "tsx --env-file=.env.local worker-entry.ts"
},
"dependencies": {
"@anatine/zod-openapi": "^2.2.8",
"@aws-sdk/client-s3": "^3.1030.0",
"@aws-sdk/client-ses": "^3.1030.0",
"@aws-sdk/s3-request-presigner": "^3.1030.0",
"@hello-pangea/dnd": "^18.0.1",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"disposable-email-domains": "^1.0.62",
"drizzle-orm": "^0.45.2",
"handlebars": "^4.7.9",
"html-to-text": "^10.0.0",
"isemail": "^3.2.0",
"js-beautify": "^1.15.4",
"juice": "^11.1.1",
"lucide-react": "^1.8.0",
"mailchecker": "^6.0.20",
"nanoid": "^5.1.9",
"next": "14.2.35",
"next-auth": "^4.24.14",
"next-themes": "^0.4.6",
"pg": "^8.20.0",
"pg-boss": "^12.15.0",
"pino": "^10.3.1",
"posthog-node": "^5.29.2",
"react": "^18",
"react-dom": "^18",
"recharts": "^3.8.1",
"resend": "^6.11.0",
"sanitize-html": "^2.17.3",
"svix": "^1.90.0",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"xlsx": "^0.18.5",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/handlebars": "^4.0.40",
"@types/html-to-text": "^9.0.4",
"@types/js-beautify": "^1.14.3",
"@types/node": "^20.19.39",
"@types/pg": "^8.20.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sanitize-html": "^2.16.1",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^8",
"eslint-config-next": "14.2.35",
"postcss": "^8",
"shadcn": "^2.10.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}