-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.64 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.64 KB
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
51
52
53
{
"name": "genai-plugin",
"version": "25",
"description": "Neo4j GenAI Plugin docs",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prestart": "npm update",
"start": "nodemon --exec \"npm run build\"",
"serve": "node server.js",
"clean": "rm -rf build",
"build": "npm run build:preview",
"postbuild": "node server.js",
"build:preview": "antora preview.yml --stacktrace --log-format=pretty",
"build:publish": "npm run clean && antora publish.yml --stacktrace --log-format=pretty",
"verify:preview": "antora --stacktrace --fetch preview.yml --log-format=json --log-level=info --log-file ./build/log/log.json",
"verify:publish": "antora --stacktrace --fetch publish.yml --log-format=json --log-level=info --log-file ./build/log/log.json"
},
"keywords": [
"antora",
"neo4j"
],
"author": "Neo4j",
"license": "ISC",
"dependencies": {
"antora": "^3.1.10",
"@neo4j-antora/antora-add-notes": "^0.3.2",
"@neo4j-antora/antora-page-roles": "^0.3.2",
"@neo4j-antora/antora-unlisted-pages": "^0.1.0",
"@neo4j-antora/roles-labels": "^0.1.1",
"@neo4j-antora/table-footnotes": "^1.0.0",
"@neo4j-antora/xref-hash-validator": "^0.1.3",
"@neo4j-documentation/macros": "^1.0.4",
"@neo4j-documentation/remote-include": "^1.0.0"
},
"devDependencies": {
"express": "^5.1.0",
"nodemon": "^3.1.0"
},
"nodemonConfig": {
"watch": [
"**/modules/**",
"**/antora.yml",
"**/preview.yml",
"**/publish.yml"
],
"ext": "yml,yaml,adoc,svg,png,jpg",
"ignore": [
"build",
"node_modules"
]
}
}