-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.4 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.4 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
{
"name": "docs",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"sync:tagotip": "node scripts/sync-tagotip.mjs",
"prestart": "tsc --project tsconfig.og.json && npm run sync:tagotip",
"start": "docusaurus start -h 0.0.0.0",
"prebuild": "tsc --project tsconfig.og.json && npm run sync:tagotip",
"build": "rm -rf build && docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"check": "oxlint --deny-warnings && oxfmt --check .",
"cdk:build": "cd cdk && tsc",
"cdk:watch": "cd cdk && tsc -w",
"cdk:deploy:docs": "cdk deploy --require-approval never --app \"tsx cdk/docs-cdk.ts\"",
"cdk:deploy:redirects": "cdk deploy --require-approval never --app \"tsx cdk/redirects-cdk.ts\"",
"cdk:deploy": "npm run cdk:deploy:docs && npm run cdk:deploy:redirects"
},
"dependencies": {
"@acid-info/docusaurus-og": "^1.0.3-beta.2",
"@docusaurus/core": "3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@docusaurus/theme-mermaid": "^3.9.2",
"@mdx-js/react": "^3.1.0",
"clsx": "^2.0.0",
"docusaurus-plugin-openapi-docs": "^4.7.1",
"docusaurus-theme-openapi-docs": "^4.7.1",
"mermaid": "11.13.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-youtube": "^10.1.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@docusaurus/tsconfig": "3.9.2",
"@docusaurus/types": "3.9.2",
"@types/node": "^22.18.1",
"aws-cdk": "^2.1105.0",
"aws-cdk-lib": "2.241.0",
"constructs": "^10.0.0",
"docusaurus-plugin-llms": "^0.3.0",
"oxfmt": "^0.37.0",
"oxlint": "^1.52.0",
"source-map-support": "^0.5.21",
"tsx": "^4.7.0",
"typescript": "~5.9.3"
},
"overrides": {
"postman-code-generators": "2.1.0"
},
"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": ">=22.0"
}
}