-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.52 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "docs",
"version": "0.0.0",
"license": "Creative Commons Attribution-NonCommercial 4.0 International",
"private": true,
"engines": {
"node": ">=24.0.0",
"npm": ">=11 <12"
},
"scripts": {
"docusaurus": "docusaurus",
"lint": "oxlint .",
"start": "docusaurus start --no-open --port 3001",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"generate": "npm run generate:api-docs",
"generate:api-docs": "docusaurus gen-api-docs api",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"check": "npm run format:check && npm run cspell && npm run test:reference-links && npm run guide-audit && npm run test:robots",
"cspell": "cspell --gitignore .",
"guide-audit": "node scripts/audit-guides.mjs",
"test:generated-links": "node scripts/test-generated-links.js",
"test:reference-links": "node scripts/test-reference-links.js",
"test:robots": "node --test test/robots-mode.test.js"
},
"dependencies": {
"@docusaurus/core": "^3.10.2",
"@docusaurus/plugin-content-docs": "^3.10.2",
"@docusaurus/preset-classic": "^3.10.2",
"@docusaurus/theme-common": "^3.10.1",
"@docusaurus/theme-mermaid": "^3.10.2",
"@docusaurus/types": "^3.9.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mdx-js/react": "^3.1.1",
"@mui/icons-material": "^9.3.1",
"@mui/material": "^9.2.0",
"@mui/x-data-grid": "^9.12.0",
"clsx": "^2.1.1",
"docusaurus-gtm-plugin": "^0.0.2",
"docusaurus-plugin-image-zoom": "^3.0.1",
"docusaurus-plugin-openapi-docs": "^5.2.0",
"docusaurus-pushfeedback": "^1.0.5",
"docusaurus-theme-openapi-docs": "^5.2.0",
"dotenv": "^17.4.2",
"lodash": "^4.18.1",
"mdx-mermaid": "^2.0.4",
"mermaid": "^11.17.1",
"prism-react-renderer": "^2.4.1",
"raw-loader": "^4.0.2",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-mailchimp-subscribe": "^2.1.3",
"redocusaurus": "^2.5.2",
"remark": "^15.0.1",
"remark-mdx": "^3.1.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"string_decoder": "^1.3.0",
"unist-util-visit": "^5.0.0"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.10.2",
"@types/lodash": "^4.17.25",
"cspell": "^10.1.0",
"image-size": "^2.0.2",
"js-yaml": "^5.3.0",
"oxfmt": "^0.65.0",
"oxlint": "^1.80.0",
"typescript": "^6.0.3"
},
"overrides": {
"brace-expansion@^1": "^2.1.3",
"brace-expansion@^2": "^2.1.3",
"brace-expansion@^5": "^5.0.8",
"diff": ">=5.2.2",
"dompurify": ">=3.3.2",
"fast-uri": ">=3.1.2",
"fast-xml-parser": ">=5.5.7",
"ip-address": ">=10.1.1",
"js-yaml@^4": "^4.3.0",
"lodash": "^4.18.1",
"lodash-es": ">=4.18.1",
"mdx-mermaid": {
"unist-util-visit": "$unist-util-visit"
},
"picomatch": ">=2.3.2",
"postcss": ">=8.5.10",
"qs": ">=6.14.1",
"serialize-javascript": ">=6.0.3",
"uuid": ">=11.1.1",
"webpack": ">=5.104.1",
"webpack-dev-server": ">=5.2.1",
"yaml": ">=1.10.3"
}
}