package.json 479 B

123456789101112131415161718192021222324
  1. {
  2. "name": "api-restful",
  3. "version": "1.0.0",
  4. "description": "api that serves latex2pdf generator for nibis editor",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1"
  8. },
  9. "keywords": [
  10. "api",
  11. "rest",
  12. "nodejs",
  13. "editor"
  14. ],
  15. "author": "Alejandro Castilla",
  16. "license": "GPL-3.0",
  17. "dependencies": {
  18. "body-parser": "^1.19.0",
  19. "cors": "^2.8.5",
  20. "express": "^4.17.1",
  21. "morgan": "^1.10.0"
  22. }
  23. }