-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.32 KB
/
package.json
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
{
"name": "zai-docs",
"version": "1.0.0",
"description": "Static Site for zaikio documentation, including API, Guides and UI Components.",
"private": true,
"engines": {
"node": "18.x",
"npm": "8.x"
},
"scripts": {
"serve": "node ./scripts/fetchDocs.js && NODE_OPTIONS=--openssl-legacy-provider vuepress dev docs",
"build": "node ./scripts/fetchDocs.js && NODE_OPTIONS=\"--openssl-legacy-provider --max_old_space_size=2560\" vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crispymtn/zai-docs.git"
},
"keywords": [
"docs",
"api",
"swagger"
],
"bugs": {
"url": "https://github.com/crispymtn/zai-docs/issues"
},
"homepage": "https://github.com/crispymtn/zai-docs#readme",
"devDependencies": {
"@vuepress/shared-utils": "^1.8.2",
"axios": "^0.21.2",
"js-yaml": "^4.1.0",
"js-yaml-loader": "^1.2.2",
"json-schema-ref-parser": "^9.0.9",
"jsonwebtoken": "^8.5.1",
"jwk-to-pem": "^2.0.5",
"minimist": ">=1.2.6",
"node-fetch": "^2.6.7",
"reselect": "^4.0.0",
"swagger-ui": "^4.1.3",
"vue-server-renderer": "2.6.14",
"vue-tabs-component": "^1.5.0",
"vuepress": "^1.8.2",
"vuepress-plugin-feed": "^0.1.9",
"vuepress-plugin-mermaidjs": "^1.8.1",
"vuepress-plugin-tabs": "^0.3.0"
}
}