forked from nboldhq/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 2.01 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
47
48
49
50
{
"name": "docs",
"version": "0.5.0",
"description": "nBold Documentation",
"author": "Guillaume Meyer <[email protected]> (https://nbold.co)",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/nboldhq/docs.git"
},
"bugs": {
"url": "https://github.com/nboldhq/docs/issues"
},
"homepage": "https://github.com/nboldhq/docs#readme",
"scripts": {
"ngrok": "./bin/ngrok/ngrok start std -config=./bin/ngrok/ngrok.yml",
"dev": "node ./node_modules/vuepress/cli.js dev ./src --port 3000 --no-clear-screen",
"test": "find src -name '*.md' -not -path './node_modules/*' -exec npx --yes markdown-link-check '{}' --config ./build/makdown_links_check/.mlc_config.json --quiet ';' > ./build/makdown_links_check/links_check.log",
"build": "gulp build && npx openapi-generator-cli generate && node ./node_modules/vuepress/cli.js build ./src --no-cache",
"export:docx": "bash ./build/exports/export_docx.sh",
"export:pdf": "bash ./build/exports/export_pdf.sh",
"export": "npm run export:docx && npm run export:pdf",
"commit": "git add . && npx --yes git-cz",
"release": "npm run release:minor",
"release:patch": "npx --yes standard-version --release-as patch",
"release:minor": "npx --yes standard-version --release-as minor",
"release:major": "npx --yes standard-version --release-as major",
"push": "git push --follow-tags origin main"
},
"devDependencies": {
"@microsoft/teams-js": "^1.11.0",
"@mr-hope/vuepress-plugin-copy-code": "^1.26.0",
"@openapitools/openapi-generator-cli": "^2.4.26",
"gulp": "^4.0.2",
"gulp-concat": "^2.6.1",
"moment": "^2.29.1",
"msal": "^1.4.15",
"sentence-case": "^3.0.4",
"swagger-ui-dist": "^4.4.1",
"title-case": "^3.0.3",
"uikit": "^3.10.1",
"vuepress": "^1.9.7",
"vuepress-plugin-autometa": "^0.1.13",
"vuepress-plugin-code-copy": "^1.0.6",
"vuepress-plugin-mermaidjs": "^1.9.0",
"vuepress-theme-yuu": "^3.1.1",
"yamljs": "^0.3.0"
}
}