forked from bonitasoft/bonita-documentation-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 923 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "bonita-documentation-site",
"version": "0.0.1",
"license": "GPL-2.0-or-later",
"scripts": {
"clean": "rimraf build .cache",
"build": "antora --stacktrace --fetch --clean antora-playbook.yml",
"local:build-static": "antora --stacktrace --fetch --html-url-extension-style default antora-playbook.yml",
"local:build-static:local-content": "node scripts/generate-local-sources-antora-playbook.js && antora --stacktrace --fetch --html-url-extension-style default antora-playbook-local-sources.yml",
"local:build": "antora --stacktrace --fetch --url http://localhost:8080 antora-playbook.yml",
"serve": "http-server build/site -c-1 --port 8080"
},
"devDependencies": {
"@antora/cli": "^2.3.4",
"@antora/site-generator-default": "^2.3.4",
"fs-extra": "^9.0.1",
"http-server": "^0.12.3",
"js-yaml": "^4.0.0",
"minimist": "^1.2.5",
"rimraf": "^3.0.2"
}
}