package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 -r tsconfig-paths/register -i --transpile-only ${INSPECT_BRK} ./src/main.ts",
  13. "build": "tsc && tsc-alias",
  14. "prod": "node build/app/src/main.js",
  15. "lint": "eslint src --ext .js,.ts",
  16. "typescript": "tsc --noEmit",
  17. "test": "mocha -r ts-node/register -r tsconfig-paths/register -r chai/register-should.js '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. "mongoose-update-versioning": "^0.3.0",
  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. "ts-patch-mongoose": "^2.0.5",
  36. "ws": "^8.13.0"
  37. },
  38. "devDependencies": {
  39. "@faker-js/faker": "^8.4.1",
  40. "@microsoft/tsdoc": "^0.14.2",
  41. "@types/chai": "^4.3.5",
  42. "@types/config": "^3.3.0",
  43. "@types/express": "^4.17.17",
  44. "@types/mocha": "^10.0.1",
  45. "@types/sinon": "^10.0.14",
  46. "@types/sinon-chai": "^3.2.9",
  47. "@types/ws": "^8.5.4",
  48. "@typescript-eslint/eslint-plugin": "^5.59.5",
  49. "@typescript-eslint/parser": "^5.59.5",
  50. "chai": "^4.3.7",
  51. "chai-as-promised": "^7.1.1",
  52. "eslint": "^8.40.0",
  53. "eslint-config-airbnb-base": "^15.0.0",
  54. "eslint-config-prettier": "^8.8.0",
  55. "eslint-plugin-import": "^2.27.5",
  56. "eslint-plugin-prettier": "^4.2.1",
  57. "eslint-plugin-tsdoc": "^0.2.17",
  58. "mocha": "^10.2.0",
  59. "prettier": "2.8.8",
  60. "sinon": "^15.0.4",
  61. "sinon-chai": "^3.7.0",
  62. "trace-unhandled": "^2.0.1",
  63. "ts-node": "^10.9.1",
  64. "ts-node-dev": "^2.0.0",
  65. "tsc-alias": "^1.8.8",
  66. "tsconfig-paths": "^4.2.0",
  67. "typescript": "^5.0.4"
  68. }
  69. }