package.json 686 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "inigovalentin",
  3. "version": "0.0.1",
  4. "description": "Iñigo Valentin's Website",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "nodejs --env-file=env/pro.env app.js",
  8. "start-dev": "nodejs --env-file=env/dev.env app.js",
  9. "test": "jest"
  10. },
  11. "author": "Iñigo Valentin",
  12. "license": "GPL-3.0",
  13. "dependencies": {
  14. "bcryptjs": "^2.4.3",
  15. "cors": "^2.8.5",
  16. "dotenv": "^16.4.5",
  17. "express": "^4.21.1",
  18. "jest": "^29.7.0",
  19. "jsonwebtoken": "^9.0.2",
  20. "mysql2": "^3.11.3",
  21. "node-mocks-http": "^1.16.1",
  22. "pine": "^1.1.1",
  23. "pino": "^9.5.0",
  24. "sequelize": "^6.37.4",
  25. "sequelize-mock": "^0.10.2",
  26. "sha1": "^1.1.1"
  27. }
  28. }