-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.84 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "linkedgrow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:seed-admin": "npx tsx src/lib/db/seed-admin.ts",
"db:migrate": "node --import tsx src/lib/db/migrate-cli.ts",
"db:clear-2fa": "node scripts/clear-two-factor.mjs",
"test": "node --import tsx --test 'src/**/*.test.ts' 'shared/**/*.test.ts'",
"test:e2e": "playwright test --reporter=line"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.37",
"@ai-sdk/react": "^3.0.107",
"@auth/drizzle-adapter": "^1.11.1",
"@aws-sdk/client-s3": "^3.971.0",
"@aws-sdk/s3-request-presigner": "^3.971.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.1.1",
"@google/genai": "^1.40.0",
"@libsql/client": "^0.17.0",
"@mozilla/readability": "^0.6.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.6",
"@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-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.14",
"@radix-ui/react-tooltip": "^1.2.7",
"@stripe/stripe-js": "^8.6.1",
"@tailwindcss/typography": "^0.5.19",
"@upstash/qstash": "^2.8.4",
"ai": "^6.0.105",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dompurify": "^3.3.3",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"fabric": "^7.2.0",
"flexsearch": "^0.8.212",
"framer-motion": "^12.27.0",
"gray-matter": "^4.0.3",
"html-to-image": "^1.11.13",
"jsdom": "^28.1.0",
"jspdf": "^4.0.0",
"lucide-react": "^0.562.0",
"nanoid": "^5.1.5",
"next": "^16.1.6",
"next-auth": "^5.0.0-beta.30",
"next-intl": "^4.7.0",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.12",
"otplib": "^13.0.2",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"react-pdf": "^10.4.1",
"recharts": "^3.8.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sharp": "^0.34.5",
"stripe": "^20.2.0",
"tailwind-merge": "^3.4.0",
"unified": "^11.0.5",
"vaul": "^1.1.2"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4.1.18",
"@types/bcryptjs": "^2.4.6",
"@types/dompurify": "^3.0.5",
"@types/fabric": "^5.3.11",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.0.6",
"@types/nodemailer": "^7.0.5",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.2",
"pdfkit": "^0.17.2",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"uuid": "^13.0.0",
"wrangler": "^4.77.0"
},
"overrides": {
"@smithy/config-resolver": "^4.4.0",
"@smithy/util-defaults-mode-node": "^4.0.0"
},
"browserslist": [
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions",
"last 2 Edge versions"
]
}