-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.46 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.46 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
{
"name": "syntaxblogs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node scripts/sync-webpack-chunks.js --watch -- next dev",
"build": "node scripts/sync-webpack-chunks.js -- next build",
"start": "node scripts/sync-webpack-chunks.js && next start",
"lint": "next lint",
"test": "playwright test",
"test:unit": "vitest run",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed"
},
"dependencies": {
"@hcaptcha/react-hcaptcha": "^1.12.1",
"@modelcontextprotocol/sdk": "^1.19.1",
"@radix-ui/react-accordion": "^1.2.8",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-navigation-menu": "^1.2.10",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@sindresorhus/slugify": "^3.0.0",
"@supabase/ssr": "^0.5.0",
"@supabase/supabase-js": "^2.48.0",
"@tanstack/react-table": "^8.21.3",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.8.0",
"highlight.js": "^11.11.1",
"lucide-react": "^0.503.0",
"next": "15.3.1",
"next-themes": "^0.4.6",
"nodemailer": "^7.0.7",
"react": "^19.0.0",
"react-day-picker": "^9.11.1",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-rehype": "^11.1.2",
"sanitize-html": "^2.17.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.2.0",
"tw-animate-css": "^1.2.8",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@playwright/test": "^1.56.0",
"@tailwindcss/postcss": "^4.1.4",
"@types/express": "^5.0.3",
"@types/node": "^20.19.19",
"@types/nodemailer": "^7.0.2",
"@types/pino": "^7.0.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/sanitize-html": "^2.16.0",
"@vitest/ui": "^3.2.4",
"autoprefixer": "^10.4.21",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "15.3.1",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5",
"vitest": "^3.2.4"
}
}