-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.29 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.29 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
{
"private": true,
"scripts": {
"dev": "pnpm format && pnpm build:search && next dev --port 3001 --turbopack ",
"build": "pnpm format && pnpm build:search && cross-env NODE_ENV=production next build",
"start": "next start",
"build:search": "tsx scripts/build-search-index.ts",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md,mdx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md,mdx}\""
},
"dependencies": {
"@ai-sdk/react": "^3.0.12",
"@hookform/resolvers": "^5.2.2",
"@iconify-icon/react": "^3.0.3",
"@nanostores/react": "git+https://github.com/ai/react.git",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@splinetool/react-spline": "^4.1.0",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@vercel/analytics": "^1.6.1",
"ahooks": "^3.9.6",
"ai": "^6.0.12",
"class-variance-authority": "^0.7.1",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^3.6.0",
"dayjs": "^1.11.19",
"ds-markdown": "^1.0.4",
"flexsearch": "^0.8.212",
"gray-matter": "^4.0.3",
"gsap": "^3.13.0",
"lucide-react": "^0.562.0",
"motion": "^12.23.25",
"next": "16.1.0",
"next-mdx-remote": "^6.0.0",
"next-themes": "^0.4.6",
"pixi.js": "^8.14.3",
"postcss": "^8.5.6",
"react-hook-form": "^7.70.0",
"react-markdown": "^10.1.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"shiki": "^3.20.0",
"simplex-noise": "^4.0.3",
"styled-components": "^6.1.19",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.21.0",
"uuid": "^13.0.0",
"zod": "^4.3.5",
"zustand": "^5.0.9"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"autoprefixer": "^10.4.19",
"cross-env": "^10.1.0",
"prettier": "^3.8.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"typescript": "^5.5.2"
}
}