12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "musare-backend",
- "private": true,
- "version": "3.10.0-rc1",
- "type": "module",
- "description": "An open-source collaborative music listening and catalogue curation application. Currently supporting YouTube based content.",
- "main": "index.js",
- "author": "Musare Team",
- "license": "GPL-3.0",
- "repository": "https://github.com/Musare/Musare",
- "scripts": {
- "dev": "nodemon --es-module-specifier-resolution=node",
- "docker:dev": "nodemon --es-module-specifier-resolution=node --legacy-watch --no-stdin /opt/app",
- "docker:prod": "node --es-module-specifier-resolution=node /opt/app",
- "lint": "eslint . --ext .js",
- "typescript": "tsc --noEmit --skipLibCheck"
- },
- "dependencies": {
- "async": "^3.2.4",
- "axios": "^1.3.4",
- "bcrypt": "^5.1.0",
- "bluebird": "^3.7.2",
- "body-parser": "^1.20.2",
- "config": "^3.3.9",
- "cookie-parser": "^1.4.6",
- "cors": "^2.8.5",
- "express": "^4.18.2",
- "moment": "^2.29.4",
- "mongoose": "^6.6.5",
- "nodemailer": "^6.9.1",
- "oauth": "^0.10.0",
- "redis": "^4.6.5",
- "retry-axios": "^3.0.0",
- "sha256": "^0.2.0",
- "socks": "^2.7.1",
- "soundcloud-key-fetch": "^1.0.13",
- "underscore": "^1.13.6",
- "ws": "^8.13.0"
- },
- "devDependencies": {
- "@typescript-eslint/eslint-plugin": "^5.54.1",
- "@typescript-eslint/parser": "^5.54.1",
- "eslint": "^8.36.0",
- "eslint-config-airbnb-base": "^15.0.0",
- "eslint-config-prettier": "^8.7.0",
- "eslint-plugin-import": "^2.27.5",
- "eslint-plugin-jsdoc": "^40.0.1",
- "eslint-plugin-prettier": "^4.2.1",
- "nodemon": "^2.0.21",
- "prettier": "2.8.4",
- "trace-unhandled": "^2.0.1",
- "ts-node": "^10.9.1",
- "typescript": "^4.9.5"
- }
- }
|