package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "musare-backend",
  3. "private": true,
  4. "version": "staging",
  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": "eslint . --ext .js",
  16. "typescript": "tsc --noEmit --skipLibCheck"
  17. },
  18. "dependencies": {
  19. "async": "^3.2.4",
  20. "axios": "^1.4.0",
  21. "bcrypt": "^5.1.0",
  22. "bluebird": "^3.7.2",
  23. "body-parser": "^1.20.2",
  24. "config": "^3.3.9",
  25. "cookie-parser": "^1.4.6",
  26. "cors": "^2.8.5",
  27. "express": "^4.18.2",
  28. "moment": "^2.29.4",
  29. "mongoose": "^6.6.5",
  30. "nodemailer": "^6.9.2",
  31. "oauth": "^0.10.0",
  32. "redis": "^4.6.6",
  33. "retry-axios": "^3.0.0",
  34. "sha256": "^0.2.0",
  35. "socks": "^2.7.1",
  36. "soundcloud-key-fetch": "^1.0.13",
  37. "underscore": "^1.13.6",
  38. "ws": "^8.13.0"
  39. },
  40. "devDependencies": {
  41. "@typescript-eslint/eslint-plugin": "^5.59.5",
  42. "@typescript-eslint/parser": "^5.59.5",
  43. "eslint": "^8.40.0",
  44. "eslint-config-airbnb-base": "^15.0.0",
  45. "eslint-config-prettier": "^8.8.0",
  46. "eslint-plugin-import": "^2.27.5",
  47. "eslint-plugin-jsdoc": "^44.2.3",
  48. "eslint-plugin-prettier": "^4.2.1",
  49. "nodemon": "^2.0.22",
  50. "prettier": "2.8.8",
  51. "trace-unhandled": "^2.0.1",
  52. "ts-node": "^10.9.1",
  53. "typescript": "^5.0.4"
  54. }
  55. }