-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.32 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.32 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
{
"name": "open-kairos",
"version": "1.0.0",
"private": true,
"description": "End-user documentation site for Kairos",
"scripts": {
"start": "docusaurus start --host 0.0.0.0 --port 3000",
"dev": "concurrently -k \"npm:watch:api\" \"npm:start\"",
"build": "docusaurus build",
"build:api": "node openapi/scripts/build-versioned-api.js",
"watch:api": "chokidar \"openapi/*.yaml\" \"openapi/templates/**/*.mustache\" \"openapi/scripts/**/*.js\" -c \"npm run build:api\" --initial",
"serve": "docusaurus serve",
"clear": "docusaurus clear",
"test": "node --test \"versioned-docs/**/*.test.js\" \"versioned-pages/**/*.test.js\" \"openapi/scripts/**/*.test.js\"",
"lint": "markdownlint \"README.md\" \"docs/**/*.md\"",
"validate": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"@docusaurus/core": "^3.9.2",
"@docusaurus/preset-classic": "^3.9.2",
"@easyops-cn/docusaurus-search-local": "^0.55.1",
"clsx": "^2.1.1",
"js-yaml": "^4.1.1",
"prism-react-renderer": "^2.4.1",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.31.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^9.2.1",
"markdownlint-cli": "^0.48.0"
},
"engines": {
"node": "24.x",
"npm": "11.x"
}
}