forked from neo4j-documentation/docs-refresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 3.36 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": "@neo4j/docs",
"version": "1.0.0",
"description": "Neo4j Docs builder",
"repository": "https://github.com/neo4j-documentation/docs-refresh/",
"main": "index.js",
"scripts": {
"start": "node server.js",
"build": "npm run build:preview",
"build:preview": "npm run preview:developer && npm run preview:labs && npm run preview:kb && npm run preview:training && npm run preview:developer-subfolders && npm run preview:graphgist",
"preview:developer": "antora --fetch --stacktrace --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip developer.yml",
"preview:labs": "antora --fetch --stacktrace --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip labs-docs.yml",
"preview:kb": "antora --fetch --stacktrace --generator @neo4j/developer-site-generator --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip kb.yml",
"preview:training": "antora --fetch --stacktrace --generator @neo4j/developer-site-generator --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip training.yml",
"preview:developer-subfolders": "antora --fetch --stacktrace --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip developer-subfolders.yml",
"preview:graphgist": "antora --fetch --stacktrace --generator @neo4j/developer-site-generator --ui-bundle-url https://s3-eu-west-1.amazonaws.com/static-content.neo4j.com/build/ui-bundle.zip graphgist.yml",
"build:production": "npm run production:developer && npm run production:labs && npm run production:kb && npm run production:training && npm run production:developer-subfolders && npm run production:graphgist",
"production:developer": "antora --fetch --stacktrace developer.yml",
"production:labs": "antora --fetch --stacktrace labs-docs.yml",
"production:kb": "antora --fetch --stacktrace --generator @neo4j/developer-site-generator kb.yml",
"production:training": "antora --fetch --stacktrace --generator @neo4j/developer-site-generator training.yml",
"production:developer-subfolders": "antora --fetch --stacktrace developer-subfolders.yml",
"production:graphgist": "antora --fetch --stacktrace --generator @neo4j/developer-site-generator graphgist.yml",
"lint": "npm run lint-xref",
"lint-xref": "npm run lint-xref:developer-subfolders && npm run lint-xref:developer && npm run lint-xref:labs-docs",
"lint-xref:developer-subfolders": "antora --generator @antora/xref-validator developer-subfolders.yml",
"lint-xref:developer": "antora --generator @antora/xref-validator developer.yml",
"lint-xref:labs-docs": "antora --generator @antora/xref-validator labs-docs.yml",
"lint-asciidoc": "./build.sh && ./lint/asciidoctor-errors.sh && ./lint/asciidoctor-warnings.sh",
"index": "node algolia"
},
"author": "Adam Cowley <adam+github@neo4j.com>",
"license": "ISC",
"dependencies": {
"@antora/cli": "^2.3.4",
"@antora/site-generator-default": "^2.3.4",
"@neo4j/developer-site-generator": "git+https://github.com/neo4j-documentation/developer-site-generator.git#v0.5.1",
"algoliasearch": "^4.9.0",
"cheerio": "^1.0.0-rc.3",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@antora/xref-validator": "gitlab:antora/xref-validator",
"express": "^4.17.1"
}
}