-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.68 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.68 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
{
"name": "frontend",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"seed:categories": "tsx db/seed-categories.ts",
"seed:questions": "tsx db/seed-questions.ts",
"seed:users": "tsx db/seed-users.ts",
"parse": "tsx parse/parse.ts",
"db:generate": "drizzle-kit generate --config drizzle.config.ts",
"db:migrate": "drizzle-kit migrate --config drizzle.config.ts",
"db:studio": "drizzle-kit studio --config drizzle.config.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:blog": "vitest run components/tests/blog/*.test.tsx lib/tests/blog/*.test.ts",
"test:blog:coverage": "vitest run --coverage \"--coverage.include=components/blog/**\" \"--coverage.include=app/api/blog-*/**\" components/tests/blog/*.test.tsx lib/tests/blog/*.test.ts"
},
"dependencies": {
"@neondatabase/serverless": "^1.0.2",
"@portabletext/react": "^5.0.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-tabs": "^1.1.13",
"@sanity/client": "^7.12.1",
"@sanity/image-url": "^1.2.0",
"@stripe/react-stripe-js": "^5.4.1",
"@stripe/stripe-js": "^8.6.0",
"@vercel/analytics": "^1.6.1",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.8.0",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.45.1",
"framer-motion": "^12.23.26",
"groq": "^4.14.2",
"groq-sdk": "^0.37.0",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.555.0",
"next": "^16.0.7",
"next-intl": "^4.6.1",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.12",
"pg": "^8.16.3",
"postgres": "^3.4.7",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"sonner": "^2.0.7",
"stripe": "20.0.0",
"tailwind-merge": "^3.4.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.15.1",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.30",
"@types/nodemailer": "^7.0.4",
"@types/react": "^19.2.8",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.0.18",
"drizzle-kit": "^0.18.1",
"eslint": "^9",
"eslint-config-next": "16.0.1",
"jsdom": "^27.4.0",
"tailwindcss": "^4",
"ts-node": "^1.7.1",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.16"
}
}