forked from neo4j-documentation/documentation-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "documentation-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run serve & npm-watch build",
"serve": "node server.js",
"build": "antora --stacktrace preview.yml",
"publish": "git push origin HEAD:publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j-documentation/documentation-starter.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/neo4j-documentation/documentation-starter/issues"
},
"homepage": "https://github.com/neo4j-documentation/documentation-starter#readme",
"dependencies": {
"@antora/cli": "^2.3.3",
"@antora/site-generator-default": "^2.3.3",
"@neo4j-documentation/macros": "^1.0.0",
"@neo4j-documentation/remote-include": "^1.0.0",
"express": "^4.17.1",
"npm-watch": "^0.7.0",
"serve-index": "^1.9.1"
},
"watch": {
"build": {
"patterns": [
"modules"
],
"extensions": "adoc"
}
}
}