package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "musare-backend",
  3. "private": true,
  4. "version": "3.9.0-dev",
  5. "type": "commonjs",
  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": "ts-node-dev -i --transpile-only ${INSPECT_BRK} ./src/main.ts",
  13. "build": "tsc",
  14. "prod": "node build/src/main.js",
  15. "lint": "eslint . --ext .js,.ts",
  16. "typescript": "tsc --noEmit"
  17. },
  18. "dependencies": {
  19. "async": "^3.2.4",
  20. "axios": "^1.1.2",
  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. "object-hash": "^3.0.0",
  33. "redis": "^4.3.1",
  34. "retry-axios": "^3.0.0",
  35. "sha256": "^0.2.0",
  36. "socks": "^2.7.1",
  37. "underscore": "^1.13.6",
  38. "ws": "^8.9.0"
  39. },
  40. "devDependencies": {
  41. "@microsoft/tsdoc": "^0.14.2",
  42. "@types/async": "^3.2.15",
  43. "@types/config": "^3.3.0",
  44. "@types/object-hash": "^2.2.1",
  45. "@typescript-eslint/eslint-plugin": "^5.40.0",
  46. "@typescript-eslint/parser": "^5.40.0",
  47. "eslint": "^8.25.0",
  48. "eslint-config-airbnb-base": "^15.0.0",
  49. "eslint-config-prettier": "^8.5.0",
  50. "eslint-plugin-import": "^2.26.0",
  51. "eslint-plugin-prettier": "^4.2.1",
  52. "eslint-plugin-tsdoc": "^0.2.17",
  53. "prettier": "2.7.1",
  54. "trace-unhandled": "^2.0.1",
  55. "ts-node": "^10.9.1",
  56. "ts-node-dev": "^2.0.0",
  57. "typescript": "^4.8.4"
  58. }
  59. }