-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 4.18 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 4.18 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "guides-v2-rc",
"version": "1.0.0",
"private": true,
"scripts": {
"predev": "tsx scripts/build-locale-availability.ts",
"dev": "rspress dev",
"build": "pnpm build:cache && NODE_ENV=production turbo run build:fr build:en build:de build:es build:it build:pl build:pt --concurrency=2 && pnpm build:combine",
"build:fast": "pnpm build:cache && NODE_ENV=production turbo run build:fr build:en build:de build:es build:it build:pl build:pt --concurrency=4 && pnpm build:combine",
"build:low-mem": "pnpm build:cache && NODE_ENV=production turbo run build:fr build:en build:de build:es build:it build:pl build:pt --concurrency=1 && pnpm build:combine",
"build:cache": "tsx scripts/generate-last-updated-cache.ts",
"build:locale-availability": "tsx scripts/build-locale-availability.ts",
"build:fr": "tsx scripts/build-locale-availability.ts && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" LOCALE=fr rspress build -c rspress.config.build.ts",
"build:en": "tsx scripts/build-locale-availability.ts && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" LOCALE=en rspress build -c rspress.config.build.ts",
"build:de": "tsx scripts/build-locale-availability.ts && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" LOCALE=de rspress build -c rspress.config.build.ts",
"build:es": "tsx scripts/build-locale-availability.ts && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" LOCALE=es rspress build -c rspress.config.build.ts",
"build:it": "tsx scripts/build-locale-availability.ts && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" LOCALE=it rspress build -c rspress.config.build.ts",
"build:pl": "tsx scripts/build-locale-availability.ts && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" LOCALE=pl rspress build -c rspress.config.build.ts",
"build:pt": "tsx scripts/build-locale-availability.ts && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" LOCALE=pt rspress build -c rspress.config.build.ts",
"build:combine": "tsx scripts/combine-builds.ts",
"build:legacy": "NODE_OPTIONS=--max_old_space_size=8192 rspress build",
"preview": "serve dist",
"ci": "biome ci",
"check": "biome check --write",
"format": "biome format --write",
"lint": "biome lint .",
"test": "echo todo",
"overview:validate": "tsx scripts/overview-validate.ts",
"sidebar:validate": "tsx scripts/sidebar-validate.ts",
"sidebar:orphans": "tsx scripts/sidebar-orphans.ts",
"sidebar:check": "pnpm sidebar:validate && pnpm sidebar:orphans",
"sidebar:sync-i18n": "tsx scripts/sidebar-sync-i18n.ts",
"images:compress": "tsx scripts/optimize-images.ts",
"images:check": "tsx scripts/optimize-images.ts --check",
"page:create": "tsx scripts/create-page.ts",
"page:delete": "tsx scripts/delete-page.ts",
"changelog": "tsx scripts/generate-changelog.ts",
"release:prepare": "tsx scripts/release.ts",
"prepare": "husky"
},
"dependencies": {
"@rspress/core": "^2.0.11",
"@sentry/react": "^10.52.0",
"axios": "^1.16.0",
"body-scroll-lock": "4.0.0-beta.0",
"clsx": "^2.1.1",
"scroll-into-view-if-needed": "^3.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@esbuild/linux-x64": "^0.28.0",
"@inquirer/prompts": "^8.4.3",
"@rsbuild/plugin-sass": "^1.5.2",
"@rspress/plugin-sitemap": "^2.0.11",
"@tailwindcss/postcss": "^4.3.0",
"@types/hast": "^3.0.4",
"@types/node": "^25.6.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"cross-env": "^10.1.0",
"glob": "^13.0.6",
"gray-matter": "^4.0.3",
"husky": "^9.1.7",
"minimist": "^1.2.8",
"pagefind": "^1.5.2",
"postcss": "^8.5.14",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"serve": "^14.2.6",
"sharp": "^0.34.0",
"tailwindcss": "^4.3.0",
"ts-morph": "^28.0.0",
"tsx": "^4.21.0",
"turbo": "^2.9.12",
"unist-util-visit": "^5.1.0",
"wawoff2": "^2.0.1",
"yaml": "^2.9.0"
},
"packageManager": "pnpm@10.33.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"engines": {
"node": ">=24"
},
"type": "module"
}