-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "nextcommerce-docs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"prebuild": "npm run audit-developer-links && npm run validate-links && npm run check-capabilities",
"build": "next build --webpack",
"start": "next start",
"lint": "next lint",
"validate-links": "node scripts/validate-links.mjs",
"audit-developer-links": "node scripts/audit-developer-links.mjs",
"check-search-budget": "node scripts/check-search-budget.mjs",
"check-search-quality": "node scripts/check-search-quality.mjs",
"check-capabilities": "node scripts/check-capabilities.mjs",
"sync-capabilities": "node scripts/sync-capabilities.mjs"
},
"dependencies": {
"@next/third-parties": "^16.3.1",
"fumadocs-core": "^16.10.3",
"fumadocs-mdx": "^14.3.2",
"fumadocs-ui": "^16.10.3",
"lucide-react": "^1.38.0",
"next": "^16.2.12",
"react": "^19.1",
"react-dom": "^19.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@orama/orama": "^3.1.18",
"@tailwindcss/postcss": "^4",
"@types/mdx": "^2",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"next-validate-link": "^1.6.4",
"tailwindcss": "^4",
"typescript": "^5"
},
"engines": {
"node": ">=22"
},
"overrides": {
"postcss": "8.5.25",
"next": {
"sharp": "0.35.3"
}
}
}