-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 3.09 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 3.09 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
{
"name": "clickhouse-docs",
"version": "0.0.1",
"private": true,
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.20.0",
"scripts": {
"prepare:site": "node bin/check-gt-navigation.ts && node bin/prepare-public.ts && node bin/fetch-openapi.ts && node bin/gen-redirects.ts && node bin/gen-compat-wrappers.ts && node bin/gen-import-index.ts && node bin/gen-sidebar.ts && node bin/gen-galaxy-script.ts && node bin/gen-clickhouse-sql-keywords.ts && node bin/gen-homepage-locales.ts && node bin/gen-homepage-react.ts && node bin/gen-changelog-entries.ts",
"prebuild": "node bin/fetch-remotes.ts && pnpm run prepare:site",
"predev": "node bin/fetch-remotes.ts && pnpm run prepare:site",
"dev": "astro dev",
"build": "astro build",
"build:vercel": "node bin/vercel-build.ts",
"preview": "astro preview",
"remote-preview:scope": "node bin/write-remote-preview-scope.ts",
"deploy:validate": "node bin/validate-deploy-request.ts",
"remotes:pack": "node bin/pack-remotes.ts",
"typecheck": "astro check && tsc --project worker/tsconfig.json",
"preview:cf": "wrangler dev",
"deploy": "node bin/wrangler-locale.ts deploy",
"deploy:preview": "node bin/wrangler-locale.ts preview",
"postbuild": "node bin/postbuild.ts",
"check:gt-navigation": "node bin/check-gt-navigation.ts",
"check:mdx": "node bin/measure/mdx-compile-check.ts --refs get-started concepts guides reference products clickstack integrations resources chdb snippets",
"measure": "node bin/measure/page-weight.ts ${DOCS_OUT_DIR:-dist}/docs && node bin/measure/anchor-parity.ts ${DOCS_OUT_DIR:-dist}/docs && node bin/measure/base-check.ts ${DOCS_OUT_DIR:-dist}/docs && node bin/measure/url-parity.ts ${DOCS_OUT_DIR:-dist}/docs"
},
"dependencies": {
"@astrojs/markdown-satteri": "^0.3.8",
"@astrojs/react": "^5.0.0",
"@cloudflare/nimbus-docs": "0.13.1",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@iconify-json/fa6-brands": "^1.2.6",
"@iconify-json/fa6-solid": "^1.2.4",
"@iconify-json/ph": "^1.2.0",
"@inkeep/cxkit-react": "^0.5.119",
"@readme/httpsnippet": "11.4.0",
"@scalar/openapi-parser": "0.28.12",
"@vercel/connect": "^2.0.2",
"@vercel/microfrontends": "^2.4.0",
"@vercel/speed-insights": "^2.0.0",
"astro": "~7.3.2",
"clsx": "^2.1.1",
"mermaid": "^11.17.2",
"openapi-sampler": "1.7.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"redirects-in-workers": "^0.0.7",
"satteri": "^0.10.5",
"tailwind-merge": "^3.5.0",
"shiki": "^4.4.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@clickhouse/lexer": "github:ClickHouse/clickhouse-lexer#d5ba7f654c70c0bdb56d8de381e42f26dae6d36c",
"@cloudflare/workers-types": "^5.20260903.1",
"@shikijs/types": "^4.4.3",
"@tailwindcss/vite": "^4.1.4",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3",
"vite": "^8.2.2",
"wrangler": "^4.95.0",
"yaml": "^2.9.0"
}
}