-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.76 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
{
"name": "kcl",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.0.0",
"scripts": {
"dev": "next dev",
"prebuild": "node scripts/generate-news-json.js",
"clean:build": "node -e \"const fs=require('fs'); for (const dir of ['.next','out']) fs.rmSync(dir,{recursive:true,force:true});\"",
"build": "pnpm clean:build && node scripts/generate-news-json.js && next build && next-image-export-optimizer && node scripts/inject-sitemap-style.js",
"start": "next start",
"lint": "eslint",
"test": "vitest"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.90.1",
"@types/canvas-confetti": "^1.9.0",
"canvas-confetti": "^1.9.4",
"classnames": "^2.5.1",
"framer-motion": "^12.24.12",
"gray-matter": "^4.0.3",
"isomorphic-dompurify": "3.0.0-rc.2",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"next-image-export-optimizer": "^1.20.1",
"next-intl": "^4.7.0",
"next-themes": "^0.4.6",
"playwright-core": "^1.58.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-hook-form": "^7.70.0",
"react-markdown": "^10.1.0",
"recharts": "^3.6.0",
"remark-gfm": "^4.0.1",
"sass": "^1.97.2",
"swr": "^2.3.8",
"uuid": "^13.0.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react": "^5.1.2",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"jsdom": "^27.4.0",
"sharp": "^0.34.5",
"typescript": "^5",
"vitest": "^4.0.17"
}
}