forked from neo4j-documentation/developer-guides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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": "developer-guides",
"version": "1.0.0",
"description": "= Neo4j Developer Guides",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && npm run serve & npm-watch build",
"serve": "node server.js",
"build": "antora --stacktrace preview.yml",
"lint": "node scripts/lint-links.js",
"publish": "git push origin HEAD:publish",
"downloadNotebooks": "node scripts/download-lp-notebooks.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j-documentation/developer-guides.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/neo4j-documentation/developer-guides/issues"
},
"homepage": "https://github.com/neo4j-documentation/developer-guides#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.6.0"
},
"watch": {
"build": {
"patterns": [
"modules"
],
"extensions": "adoc"
}
},
"devDependencies": {
"cheerio": "^1.0.0-rc.3",
"hyperlink": "^4.6.0"
}
}