-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 814 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 814 Bytes
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
{
"name": "sharpapi-docs",
"version": "1.0.0",
"private": true,
"packageManager": "pnpm@11.0.9",
"scripts": {
"dev": "next dev -H 0.0.0.0 -p 3002",
"build": "node scripts/stamp-openapi.mjs && node scripts/generate-sitemap.mjs && next build && node scripts/fix-locale-links.mjs && pagefind --site out --output-subdir _pagefind",
"start": "next start",
"typecheck": "tsc --noEmit",
"check-links": "./scripts/check-links.sh"
},
"dependencies": {
"next": "^16.1.6",
"nextra": "^4.6.1",
"nextra-theme-docs": "^4.6.1",
"posthog-js": "^1.360.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@types/node": "25.4.0",
"@types/react": "19.2.14",
"linkinator": "^7.6.1",
"pagefind": "^1.4.0",
"typescript": "6.0.3"
}
}