-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.82 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.82 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
87
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"app:setup": "npx tsx lib/setup.ts",
"db:seed": "npx tsx lib/db/seed.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"push:setup": "npx tsx lib/notifications/push/setup.ts",
"generate-firebase-sw": "node terminal_scripts/generate-firebase-sw.js"
},
"dependencies": {
"@auth/core": "^0.37.4",
"@auth/drizzle-adapter": "^1.11.1",
"@aws-sdk/client-s3": "^3.750.0",
"@aws-sdk/s3-request-presigner": "^3.750.0",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"@react-email/components": "^0.0.33",
"@react-email/tailwind": "1.0.4",
"@tiptap/extension-code-block-lowlight": "^2.11.5",
"@tiptap/extension-image": "^2.11.5",
"@tiptap/extension-link": "^2.11.5",
"@tiptap/extension-placeholder": "^2.11.5",
"@tiptap/extension-text-align": "^2.11.5",
"@tiptap/extension-underline": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.13.4",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.39.3",
"firebase": "^11.4.0",
"firebase-admin": "^13.1.0",
"jose": "^5.10.0",
"lowlight": "^3.3.0",
"lucide-react": "^0.474.0",
"next": "^16.1.6",
"next-auth": "^4.24.11",
"node-pushnotifications": "^3.1.1",
"nodemailer": "^6.10.0",
"onesignal-node": "^3.4.0",
"postcss": "^8.5.3",
"postgres": "^3.4.5",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-medium-image-zoom": "^5.2.14",
"react-onesignal": "^3.0.1",
"server-only": "^0.0.1",
"stripe": "^17.6.0",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-react-aria-components": "1.2.0",
"typescript": "^5.7.3",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@types/nodemailer": "^6.4.17",
"drizzle-kit": "^0.30.4",
"tailwindcss": "^3.4.19"
}
}