package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "musare-backend",
  3. "private": true,
  4. "version": "backend-rewrite",
  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 src --ext .js,.ts",
  16. "typescript": "tsc --noEmit",
  17. "test": "mocha -r ts-node/register 'tests/**/*.test.ts' 'src/**/*.spec.ts'"
  18. },
  19. "dependencies": {
  20. "axios": "^1.4.0",
  21. "bcrypt": "^5.1.0",
  22. "body-parser": "^1.20.2",
  23. "config": "^3.3.9",
  24. "cookie-parser": "^1.4.6",
  25. "cors": "^2.8.5",
  26. "express": "^4.18.2",
  27. "moment": "^2.29.4",
  28. "mongoose": "^7.2.0",
  29. "nodemailer": "^6.9.2",
  30. "oauth": "^0.10.0",
  31. "redis": "^4.6.6",
  32. "retry-axios": "^3.0.0",
  33. "sha256": "^0.2.0",
  34. "ws": "^8.13.0"
  35. },
  36. "devDependencies": {
  37. "@microsoft/tsdoc": "^0.14.2",
  38. "@types/chai": "^4.3.5",
  39. "@types/config": "^3.3.0",
  40. "@types/mocha": "^10.0.1",
  41. "@types/sinon": "^10.0.14",
  42. "@types/sinon-chai": "^3.2.9",
  43. "@typescript-eslint/eslint-plugin": "^5.59.5",
  44. "@typescript-eslint/parser": "^5.59.5",
  45. "chai": "^4.3.7",
  46. "chai-as-promised": "^7.1.1",
  47. "eslint": "^8.40.0",
  48. "eslint-config-airbnb-base": "^15.0.0",
  49. "eslint-config-prettier": "^8.8.0",
  50. "eslint-plugin-import": "^2.27.5",
  51. "eslint-plugin-prettier": "^4.2.1",
  52. "eslint-plugin-tsdoc": "^0.2.17",
  53. "mocha": "^10.2.0",
  54. "prettier": "2.8.8",
  55. "sinon": "^15.0.4",
  56. "sinon-chai": "^3.7.0",
  57. "trace-unhandled": "^2.0.1",
  58. "ts-node": "^10.9.1",
  59. "ts-node-dev": "^2.0.0",
  60. "typescript": "^5.0.4"
  61. }
  62. }