forked from thepradipvc/thundermail-web
-
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.62 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.62 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": "thundermail-web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"ui:add": "pnpm dlx shadcn-ui@latest add",
"db:check": "drizzle-kit check",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx ./src/db/migrate.ts",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio",
"lambda:build": "npx lambda-build archive -e src/lambda/index.ts",
"lambda:deploy": "npx lambda-build upload process-emails -e src/lambda/index.ts -r ap-southeast-1"
},
"dependencies": {
"@aws-sdk/client-sqs": "^3.540.0",
"@lucia-auth/adapter-drizzle": "^1.0.2",
"@neondatabase/serverless": "^0.8.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^0.0.18",
"@tanstack/react-query": "^4.35.3",
"@tanstack/react-table": "^8.13.2",
"@trpc/client": "^10.45.1",
"@trpc/next": "^10.45.1",
"@trpc/react-query": "^10.45.1",
"@trpc/server": "^10.45.1",
"@types/aws-lambda": "^8.10.136",
"@upstash/ratelimit": "^1.0.3",
"@upstash/redis": "^1.29.0",
"@vercel/analytics": "^1.2.2",
"arctic": "^1.2.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"drizzle-orm": "^0.29.4",
"framer-motion": "^12.26.2",
"geist": "^1.2.2",
"jiti": "^1.21.0",
"lucia": "^3.0.1",
"lucide-react": "^0.344.0",
"next": "^16",
"nodemailer": "^6.9.13",
"oslo": "^1.1.2",
"react": "^19",
"react-dom": "^19",
"react-email": "^2.1.3",
"react-icons": "^5.0.1",
"react-syntax-highlighter": "^15.5.0",
"recharts": "^3.6.0",
"superjson": "^2.2.1",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"thundermail": "^1.0.0",
"tsx": "^4.7.1",
"use-debounce": "^10.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/nodemailer": "^6.4.14",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-syntax-highlighter": "^15.5.11",
"autoprefixer": "^10.0.1",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.21.2",
"eslint": "^8",
"eslint-config-next": "^16",
"lambda-build": "^1.0.6",
"pg": "^8.11.3",
"postcss": "^8",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}