package.json 796 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "leather-backend",
  3. "version": "1.0.0",
  4. "author": "Iñigo Valentin",
  5. "authorURL": "https://inigovalentin.com",
  6. "sourceSite": "Github",
  7. "sourceURL": "https://github.com/InigoValentin/leather.inigovalentin.com",
  8. "description": "",
  9. "main": "src/server.js",
  10. "scripts": {
  11. "start": "ENV=example node src/server.js",
  12. "start-dev": "ENV=development node src/server.js",
  13. "start-pro": "ENV=production node src/server.js",
  14. "test": "echo \"Error: no test specified\" && exit 1"
  15. },
  16. "keywords": [],
  17. "author": "Iñigo Valentin",
  18. "license": "GPL-v3",
  19. "dependencies": {
  20. "compression": "^1.8.1",
  21. "cors": "^2.8.5",
  22. "dotenv": "^17.2.3",
  23. "express": "^5.1.0",
  24. "express-rate-limit": "^8.1.0",
  25. "helmet": "^8.1.0",
  26. "sqlite3": "^5.1.7"
  27. }
  28. }