-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.25 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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "align",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"seed:communities": "tsx prisma/seed-communities.ts",
"verify:user": "tsx scripts/verify-user.ts verify",
"unverify:user": "tsx scripts/verify-user.ts unverify",
"verify:list": "tsx scripts/verify-user.ts list",
"add-aligners-tag": "tsx scripts/add-aligners-tag.ts",
"backfill:embeddings": "tsx scripts/generate-embeddings.ts",
"refresh:feed-profiles": "tsx scripts/refresh-feed-personalization.ts",
"vapid:generate": "web-push generate-vapid-keys"
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.9",
"@google/generative-ai": "^0.24.1",
"@hookform/resolvers": "^5.1.1",
"@hugeicons/core-free-icons": "^3.1.1",
"@hugeicons/react": "^1.1.5",
"@lucia-auth/adapter-prisma": "^4.0.1",
"@node-rs/argon2": "^2.0.2",
"@paper-design/shaders-react": "^0.0.71",
"@prisma/client": "^5.22.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@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.12",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.4",
"@react-email/render": "^2.0.2",
"@tanstack/react-query": "^5.80.6",
"@tanstack/react-query-devtools": "^5.80.6",
"@tiptap/extension-placeholder": "^2.14.0",
"@tiptap/pm": "^2.14.0",
"@tiptap/react": "^2.14.0",
"@tiptap/starter-kit": "^2.14.0",
"@uploadthing/react": "^7.3.1",
"arctic": "^3.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookie": "^1.0.2",
"date-fns": "^4.1.0",
"hugeicons-react": "^0.4.0",
"ky": "^1.8.1",
"lightningcss": "^1.30.1",
"lucia": "^3.2.2",
"next": "15.5.9",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.12",
"prisma": "^5.22.0",
"react": "19.2.1",
"react-cropper": "^2.3.3",
"react-dom": "19.2.1",
"react-hook-form": "^7.57.0",
"react-image-file-resizer": "^0.4.8",
"react-intersection-observer": "^9.16.0",
"react-linkify-it": "^1.0.8",
"server-only": "^0.0.1",
"sonner": "^2.0.5",
"stream-chat": "^9.5.1",
"stream-chat-react": "^13.0.5",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"uploadthing": "^7.7.2",
"vaul": "^1.1.2",
"web-push": "^3.6.7",
"zod": "^3.25.57",
"zustand": "^5.0.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/nodemailer": "^7.0.5",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/web-push": "^3.6.4",
"eslint": "^9",
"eslint-config-next": "15.5.7",
"eslint-config-prettier": "^10.1.5",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"tw-animate-css": "^1.3.4",
"typescript": "^5"
}
}