-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.41 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
{
"name": "happy-coder-documentation-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"postbuild": "pagefind --site .next/server/app --output-path out/_pagefind && next-sitemap",
"export": "next build && pagefind --site .next/server/app --output-path out/_pagefind && next-sitemap",
"preview": "npm run export && npx serve out -p 3001",
"start": "next start",
"lint": "next lint",
"composite-video": "npx tsx scripts/generate-realtime-sync-demo-video.ts"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.11",
"fuse.js": "^7.1.0",
"lucide-react": "^0.539.0",
"next": "15.4.5",
"nextra": "^4.6.0",
"nextra-theme-blog": "^4.6.0",
"nextra-theme-docs": "^4.6.0",
"react": "19.1.1",
"react-dom": "19.1.1",
"ts-json-decode": "^0.5.1"
},
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/node": "^20.19.11",
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7",
"autoprefixer": "^10.4.16",
"commander": "^14.0.0",
"eslint": "^8.0.0",
"eslint-config-next": "15.4.5",
"ignore-loader": "^0.1.2",
"next-sitemap": "^4.2.3",
"pagefind": "^1.3.0",
"postcss": "^8.4.31",
"serve": "^14.2.1",
"tailwindcss": "^4.1.11",
"typescript": "^5.0.0"
},
"overrides": {
"@types/react": "19.1.9",
"@types/react-dom": "19.1.7"
}
}