-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 4 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "harness-developer-hub",
"version": "3.5.2",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "node scripts/generate-troubleshoot-responses.mjs && node scripts/generate-feature-flags-rss.js && node scripts/generate-release-notes-summaries.mjs --skip-if-exists && node scripts/fetch-api-specs.mjs && node scripts/build-glossary.js && node scripts/generate-llms-txt.mjs && node scripts/generate-dms-redirect-map.mjs",
"docusaurus": "docusaurus",
"build-glossary": "node scripts/build-glossary.js",
"build-glossary:watch": "nodemon --watch src/components/ToolTip/tooltips.json --exec 'node scripts/build-glossary.js'",
"generate-llms-txt": "node scripts/generate-llms-txt.mjs",
"update-llms-txt": "node scripts/update-llms-txt.mjs",
"update-llms-txt:watch": "node scripts/update-llms-txt.mjs --watch",
"start": "node scripts/generate-llms-txt.mjs && node scripts/build-glossary.js && node scripts/generate-troubleshoot-responses.mjs && node scripts/fetch-api-specs.mjs && node scripts/generate-release-notes-summaries.mjs --skip-if-exists && node scripts/generate-dms-redirect-map.mjs && (node scripts/update-llms-txt.mjs --watch & docusaurus start --host 0.0.0.0)",
"build": "export NODE_OPTIONS=--max-old-space-size=10240 && DOCUSAURUS_IGNORE_SSG_WARNINGS=true 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:eslint": "eslint ./src/**/*.js",
"lint:ci": "export NODE_OPTIONS=--max-old-space-size=7296 && npm run lint:eslint",
"test": "npm run lint:ci",
"test:dms-redirects": "node scripts/generate-dms-redirect-map.mjs && node scripts/test-dms-redirects.mjs",
"prepare": "husky"
},
"dependencies": {
"@coveo/headless": "2.80.5",
"@docusaurus/core": "^3.10.1",
"@docusaurus/cssnano-preset": "^3.10.1",
"@docusaurus/faster": "^3.10.1",
"@docusaurus/plugin-client-redirects": "^3.10.1",
"@docusaurus/plugin-debug": "^3.10.1",
"@docusaurus/plugin-google-analytics": "^3.10.1",
"@docusaurus/plugin-google-gtag": "^3.10.1",
"@docusaurus/plugin-sitemap": "^3.10.1",
"@docusaurus/preset-classic": "^3.10.1",
"@docusaurus/theme-classic": "^3.10.1",
"@docusaurus/theme-mermaid": "^3.10.1",
"@mdx-js/react": "^3.0.0",
"@netlify/blobs": "^10.7.4",
"@netlify/functions": "^2.7.0",
"@segment/analytics-next": "^1.70.0",
"@types/react": "^18.2.48",
"clsx": "^2.0.0",
"docusaurus-plugin-sass": "^0.2.6",
"encoding": "^0.1.13",
"fs-extra": "^11.2.0",
"html2pdf.js": "^0.12.1",
"husky": "^9.1.7",
"jq-web": "^0.5.1",
"js-yaml": "^4.1.1",
"lottie-react": "^2.4.0",
"mixpanel-browser": "^2.80.0",
"pino-pretty": "^10.3.1",
"prism-react-renderer": "^2.3.1",
"rc-tooltip": "^6.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loadable": "^5.5.0",
"react-markdown": "^9.0.1",
"react-modal": "^3.16.1",
"react-router-dom": "^6.26.0",
"redux": "^5.0.1",
"refiner-js": "^1.1.7",
"rehype-katex": "7",
"remark-math": "6",
"sass": "^1.81.0",
"search-insights": "^2.13.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.10.1",
"@docusaurus/tsconfig": "^3.10.1",
"@docusaurus/types": "^3.10.1",
"@google/generative-ai": "^0.21.0",
"@types/html2pdf.js": "^0.10.0",
"@types/js-yaml": "^4.0.9",
"baseline-browser-mapping": "^2.10.33",
"dictionary-en": "^4.0.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"nodemon": "^3.1.14",
"typescript": "^5.7.3"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=22.0"
}
}