package.json 563 B

123456789101112131415161718192021
  1. {
  2. "name": "@neo4j/docs",
  3. "version": "1.0.0",
  4. "description": "Neo4j Docs builder",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "node server.js",
  8. "build": "npm run build:developer && npm run build:labs && npm run build:labs-docs && npm run build:docs",
  9. "build:docs": "antora --fetch --stacktrace docs.yml"
  10. },
  11. "license": "ISC",
  12. "dependencies": {
  13. "@antora/cli": "^2.3.4",
  14. "@antora/site-generator-default": "^2.3.4",
  15. "cheerio": "^1.0.0-rc.3",
  16. "glob-parent": "^5.1.2"
  17. },
  18. "devDependencies": {
  19. "express": "^4.17.1"
  20. }
  21. }