-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.83 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.83 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
{
"name": "learn",
"version": "1.14.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest --coverage",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push"
},
"dependencies": {
"@ai-sdk/google": "^1.2.22",
"@auth/drizzle-adapter": "^1.10.0",
"@libsql/client": "^0.15.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-switch": "^1.2.5",
"@stripe/stripe-js": "^7.8.0",
"@upstash/ratelimit": "^2.0.6",
"@upstash/redis": "^1.35.3",
"@vercel/analytics": "^1.5.0",
"ai": "^4.3.19",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dotenv": "^16.6.1",
"drizzle-orm": "^0.44.4",
"framer-motion": "^12.23.12",
"lucide-react": "^0.525.0",
"nanoid": "^5.1.5",
"next": "15.4.8",
"next-auth": "^4.24.11",
"next-intl": "^4.3.4",
"next-themes": "^0.4.6",
"pdf2json": "^3.2.0",
"radix-ui": "latest",
"react": "^19.2.3",
"react-day-picker": "8.10.1",
"react-dom": "^19.2.3",
"resend": "^4.8.0",
"sonner": "^2.0.7",
"stripe": "^18.4.0",
"tailwind-merge": "^3.3.1",
"zod": "^3.25.76",
"zustand": "^5.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.3",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.0.3",
"@tailwindcss/postcss": "^4.1.16",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20.19.9",
"@types/pdf-parse": "^1.1.5",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "^3.2.4",
"drizzle-kit": "^0.31.4",
"eslint": "^9.32.0",
"eslint-config-next": "15.4.8",
"happy-dom": "^18.0.1",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}