package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "musare-backend-kris-fork",
  3. "private": true,
  4. "version": "3.9.0-rc1-kris-fork",
  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 --cache logic",
  16. "typescript": "tsc --noEmit --skipLibCheck"
  17. },
  18. "dependencies": {
  19. "async": "^3.2.4",
  20. "axios": "^1.1.3",
  21. "bcrypt": "^5.1.0",
  22. "bluebird": "^3.7.2",
  23. "body-parser": "^1.20.1",
  24. "config": "^3.3.8",
  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.8.0",
  31. "oauth": "^0.10.0",
  32. "redis": "^4.5.1",
  33. "retry-axios": "^3.0.0",
  34. "sha256": "^0.2.0",
  35. "socks": "^2.7.1",
  36. "underscore": "^1.13.6",
  37. "ws": "^8.11.0"
  38. },
  39. "devDependencies": {
  40. "@typescript-eslint/eslint-plugin": "^5.45.0",
  41. "@typescript-eslint/parser": "^5.45.0",
  42. "eslint": "^8.28.0",
  43. "eslint-config-airbnb-base": "^15.0.0",
  44. "eslint-config-prettier": "^8.5.0",
  45. "eslint-plugin-import": "^2.26.0",
  46. "eslint-plugin-jsdoc": "^39.6.4",
  47. "eslint-plugin-prettier": "^4.2.1",
  48. "nodemon": "^2.0.20",
  49. "prettier": "2.8.0",
  50. "trace-unhandled": "^2.0.1",
  51. "ts-node": "^10.9.1",
  52. "typescript": "^4.9.3"
  53. }
  54. }