-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.02 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
{
"name": "portfolio-docs",
"version": "1.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"serve:wsl": "docusaurus serve --build --host 0.0.0.0 --port 3000",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"audit": "pnpm audit --audit-level=high",
"verify": "./scripts/verify-docs-local.sh",
"verify:quick": "./scripts/verify-docs-local.sh --skip-build",
"pr:remediate": "bash ./scripts/backport-pr-remediation.sh",
"policy:check": "./scripts/policy-consistency-check.sh",
"policy:check:strict": "./scripts/policy-consistency-check.sh --strict"
},
"dependencies": {
"@docusaurus/core": "3.10.2",
"@docusaurus/faster": "3.10.2",
"@docusaurus/preset-classic": "3.10.2",
"@docusaurus/theme-mermaid": "3.10.2",
"@mdx-js/react": "^3.1.1",
"clsx": "^2.1.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.10.2",
"@docusaurus/tsconfig": "3.10.2",
"@docusaurus/types": "3.10.2",
"@eslint/js": "^9.39.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.9.3",
"typescript": "~5.9.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=20.0"
},
"packageManager": "pnpm@10.34.5",
"pnpm": {
"overrides": {
"qs": "^6.14.1",
"lodash": "^4.18.0",
"lodash-es": "^4.18.0",
"serialize-javascript": "^7.0.5",
"svgo": "^3.3.3",
"dompurify": "^3.3.2",
"flatted": "^3.4.2",
"shell-quote": "^1.9.0",
"fast-uri": "^3.1.2",
"@babel/plugin-transform-modules-systemjs": "^7.29.4",
"webpack-dev-server@5>ws": "^8.21.0",
"webpack-bundle-analyzer@4>ws": "^7.5.11",
"path-to-regexp": "^0.1.13",
"follow-redirects": "^1.16.0",
"picomatch": "^4.0.4",
"minimatch@3>brace-expansion": "^1.1.16",
"minimatch@10>brace-expansion": "^5.0.5",
"websocket-driver@<0.7.5": ">=0.7.5",
"gray-matter>js-yaml": "3.15.0",
"js-yaml@>=4.0.0 <4.3.0": ">=4.3.0",
"js-yaml@>=3.0.0 <3.15.0": ">=3.15.0",
"shell-quote@<=1.8.4": ">=1.9.0"
}
}
}