package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "musare-backend",
  3. "private": true,
  4. "version": "3.11.0",
  5. "type": "module",
  6. "description": "An open-source collaborative music listening and catalogue curation application. Currently supporting YouTube based content.",
  7. "main": "index.js",
  8. "author": "Musare Team",
  9. "license": "GPL-3.0",
  10. "repository": "https://github.com/Musare/Musare",
  11. "scripts": {
  12. "dev": "nodemon",
  13. "prod": "node --import=extensionless/register /opt/app",
  14. "lint": "eslint . --ext .js",
  15. "typescript": "tsc --noEmit --skipLibCheck"
  16. },
  17. "dependencies": {
  18. "async": "^3.2.6",
  19. "axios": "^1.7.7",
  20. "bcrypt": "^5.1.1",
  21. "bluebird": "^3.7.2",
  22. "body-parser": "^1.20.3",
  23. "config": "^3.3.12",
  24. "cookie-parser": "^1.4.7",
  25. "cors": "^2.8.5",
  26. "express": "^4.21.1",
  27. "extensionless": "^1.9.9",
  28. "moment": "^2.30.1",
  29. "mongoose": "^6.13.3",
  30. "nodemailer": "^6.9.16",
  31. "oauth": "^0.10.0",
  32. "redis": "^4.7.0",
  33. "retry-axios": "^3.1.3",
  34. "sha256": "^0.2.0",
  35. "socks": "^2.8.3",
  36. "soundcloud-key-fetch": "^1.0.13",
  37. "underscore": "^1.13.7",
  38. "ws": "^8.18.0"
  39. },
  40. "devDependencies": {
  41. "@typescript-eslint/eslint-plugin": "^7.18.0",
  42. "@typescript-eslint/parser": "^7.18.0",
  43. "eslint": "^8.57.1",
  44. "eslint-config-airbnb-base": "^15.0.0",
  45. "eslint-config-prettier": "^9.1.0",
  46. "eslint-plugin-import": "^2.31.0",
  47. "eslint-plugin-jsdoc": "^50.4.3",
  48. "eslint-plugin-prettier": "^5.2.1",
  49. "nodemon": "^3.1.7",
  50. "prettier": "3.3.3",
  51. "trace-unhandled": "^2.0.1",
  52. "ts-node": "^10.9.2",
  53. "typescript": "^5.6.3"
  54. },
  55. "overrides": {
  56. "@aws-sdk/credential-providers": "npm:dry-uninstall"
  57. }
  58. }