-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
21 lines (21 loc) · 895 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "seguim-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",
"build-local": "antora --stacktrace --fetch --clean local-antora-playbook.yml; touch build/site/.nojekyll",
"deploy": "cd build; git clone [email protected]:gitguidev/notebooks-gitgui-site.git; cp -R site/* notebooks-gitgui-site/; cd notebooks-gitgui-site/; git add .; git commit -m 'deploy'; git config core.sshCommand 'ssh -i ~/.ssh/id_rsa_gitgui -F /dev/null'; git push",
"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"
}
}