forked from apache/camel-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.21 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
{
"version": "1.0.0-SNAPSHOT",
"license": "Apache-2.0",
"scripts": {
"build:antora": "antora --require ./menu.js --clean --fetch site.yml",
"build:hugo": "hugo --cacheDir ${HUGO_CACHE_DIR:-$(pwd)/.hugo_data}",
"build:minify": "gulp minify",
"build": "run-s build:*",
"preview": "run-s preview:*",
"preview:antora": "antora --require ./menu.js site.yml",
"preview:hugo": "hugo server -D",
"check:xref": "antora --generator @antora/xref-validator site.yml",
"check:links": "link-checker --disable-external --mkdocs --allow-hash-href public",
"check:html": "html-validate 'public/*/**/*.html' 'public/!(google)*.html'",
"checks": "run-s check:*"
},
"devDependencies": {
"@antora/cli": "~2.1",
"@antora/site-generator-default": "~2.1",
"@antora/xref-validator": "gitlab:antora/xref-validator",
"gulp": "~4.0",
"gulp-htmlmin": "~5.0",
"html-validate": "~1.2",
"hugo-cli": "~0.11",
"link-checker": "~1.2",
"npm-run-all": "~4.1",
"opal-runtime": "1.0.11"
},
"installConfig": {
"pnp": true
},
"dependencies": {
"algoliasearch": "^4.0.3",
"handlebars": "~4.1",
"toml": "~3.0",
"unzipper": "~0.10",
"yaml": "~1.6"
}
}