package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "musare-backend",
  3. "private": true,
  4. "version": "3.7.0-dev",
  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 --es-module-specifier-resolution=node",
  13. "docker:dev": "nodemon --es-module-specifier-resolution=node --legacy-watch --no-stdin /opt/app",
  14. "docker:prod": "node --es-module-specifier-resolution=node /opt/app",
  15. "lint": "npx eslint --cache logic",
  16. "typescript": "npx tsc --noEmit --skipLibCheck"
  17. },
  18. "dependencies": {
  19. "async": "^3.2.3",
  20. "axios": "^0.27.2",
  21. "bcrypt": "^5.0.1",
  22. "bluebird": "^3.7.2",
  23. "body-parser": "^1.20.0",
  24. "config": "^3.3.7",
  25. "cookie-parser": "^1.4.6",
  26. "cors": "^2.8.5",
  27. "express": "^4.18.1",
  28. "moment": "^2.29.3",
  29. "mongoose": "^6.3.5",
  30. "nodemailer": "^6.7.5",
  31. "oauth": "^0.9.15",
  32. "redis": "^3.1.2",
  33. "retry-axios": "^3.0.0",
  34. "sha256": "^0.2.0",
  35. "socks": "^2.6.2",
  36. "underscore": "^1.13.4",
  37. "ws": "^8.7.0"
  38. },
  39. "devDependencies": {
  40. "eslint": "^8.17.0",
  41. "eslint-config-airbnb-base": "^15.0.0",
  42. "eslint-config-prettier": "^8.5.0",
  43. "eslint-plugin-import": "^2.26.0",
  44. "eslint-plugin-jsdoc": "^39.3.2",
  45. "eslint-plugin-prettier": "^4.0.0",
  46. "prettier": "2.6.2",
  47. "trace-unhandled": "^2.0.1",
  48. "ts-node": "^10.8.1",
  49. "typescript": "^4.7.3"
  50. }
  51. }