-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 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
{
"dependencies": {
"@docsearch/react": "^3.6.0",
"@types/node": "22.10.7",
"axios": "^1.8.2",
"dompurify": "^3.2.4",
"dotenv": "^16.4.7",
"katex": "^0.16.21",
"next": "15.2.8",
"next-sitemap": "^4.2.2",
"nextra": "^3.3.1",
"nextra-theme-docs": "^3.3.1",
"path-to-regexp": ">=6.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-gtm-module": "^2.0.11",
"react-markdown": "^9.0.3",
"remark-reading-time": "^2.0.1",
"tar": ">=6.2.1",
"ts-node": "^10.9.2"
},
"overrides": {
"estree-util-value-to-estree": "^3.3.3",
"axios": "^1.8.2"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap && ts-node postbuild.mjs",
"start": "next start",
"lint": "next lint",
"format": "prettier --write . && git add .",
"export": "NEXT_BASE_PATH=/docs NEXT_PUBLIC_ALGOLIA_SEARCH=false UNOPTIMIZED_IMAGES=true NEXT_OUTPUT=export next build",
"export-static": "UNOPTIMIZED_IMAGES=true NEXT_OUTPUT=export NEXT_TRAILING_SLASH=true next build"
}
}