package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. "test": "mocha -r ts-node/register 'tests/**/*.test.ts' 'src/**/*.spec.ts'"
  18. },
  19. "dependencies": {
  20. "async": "^3.2.4",
  21. "axios": "^1.1.2",
  22. "bcrypt": "^5.1.0",
  23. "bluebird": "^3.7.2",
  24. "body-parser": "^1.20.1",
  25. "config": "^3.3.8",
  26. "cookie-parser": "^1.4.6",
  27. "cors": "^2.8.5",
  28. "express": "^4.18.2",
  29. "moment": "^2.29.4",
  30. "mongoose": "^6.6.5",
  31. "nodemailer": "^6.8.0",
  32. "oauth": "^0.10.0",
  33. "object-hash": "^3.0.0",
  34. "redis": "^4.3.1",
  35. "retry-axios": "^3.0.0",
  36. "sha256": "^0.2.0",
  37. "socks": "^2.7.1",
  38. "underscore": "^1.13.6",
  39. "ws": "^8.9.0"
  40. },
  41. "devDependencies": {
  42. "@microsoft/tsdoc": "^0.14.2",
  43. "@types/async": "^3.2.15",
  44. "@types/chai": "^4.3.4",
  45. "@types/config": "^3.3.0",
  46. "@types/mocha": "^10.0.0",
  47. "@types/object-hash": "^2.2.1",
  48. "@types/sinon": "^10.0.13",
  49. "@types/sinon-chai": "^3.2.9",
  50. "@typescript-eslint/eslint-plugin": "^5.40.0",
  51. "@typescript-eslint/parser": "^5.40.0",
  52. "chai": "^4.3.7",
  53. "eslint": "^8.25.0",
  54. "eslint-config-airbnb-base": "^15.0.0",
  55. "eslint-config-prettier": "^8.5.0",
  56. "eslint-plugin-import": "^2.26.0",
  57. "eslint-plugin-prettier": "^4.2.1",
  58. "eslint-plugin-tsdoc": "^0.2.17",
  59. "mocha": "^10.1.0",
  60. "prettier": "2.7.1",
  61. "sinon": "^14.0.2",
  62. "sinon-chai": "^3.7.0",
  63. "trace-unhandled": "^2.0.1",
  64. "ts-node": "^10.9.1",
  65. "ts-node-dev": "^2.0.0",
  66. "typescript": "^4.8.4"
  67. }
  68. }