1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "musare-backend",
- "private": true,
- "version": "3.9.0-dev",
- "type": "commonjs",
- "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": "ts-node-dev -i --transpile-only ${INSPECT_BRK} ./src/main.ts",
- "build": "tsc",
- "prod": "node build/src/main.js",
- "lint": "eslint . --ext .js,.ts",
- "typescript": "tsc --noEmit",
- "test": "mocha -r ts-node/register 'tests/**/*.test.ts' 'src/**/*.spec.ts'"
- },
- "dependencies": {
- "async": "^3.2.4",
- "axios": "^1.1.2",
- "bcrypt": "^5.1.0",
- "bluebird": "^3.7.2",
- "body-parser": "^1.20.1",
- "config": "^3.3.8",
- "cookie-parser": "^1.4.6",
- "cors": "^2.8.5",
- "express": "^4.18.2",
- "moment": "^2.29.4",
- "mongoose": "^6.6.5",
- "nodemailer": "^6.8.0",
- "oauth": "^0.10.0",
- "object-hash": "^3.0.0",
- "redis": "^4.3.1",
- "retry-axios": "^3.0.0",
- "sha256": "^0.2.0",
- "socks": "^2.7.1",
- "underscore": "^1.13.6",
- "ws": "^8.9.0"
- },
- "devDependencies": {
- "@microsoft/tsdoc": "^0.14.2",
- "@types/async": "^3.2.15",
- "@types/chai": "^4.3.4",
- "@types/config": "^3.3.0",
- "@types/mocha": "^10.0.0",
- "@types/object-hash": "^2.2.1",
- "@types/sinon": "^10.0.13",
- "@types/sinon-chai": "^3.2.9",
- "@typescript-eslint/eslint-plugin": "^5.40.0",
- "@typescript-eslint/parser": "^5.40.0",
- "chai": "^4.3.7",
- "eslint": "^8.25.0",
- "eslint-config-airbnb-base": "^15.0.0",
- "eslint-config-prettier": "^8.5.0",
- "eslint-plugin-import": "^2.26.0",
- "eslint-plugin-prettier": "^4.2.1",
- "eslint-plugin-tsdoc": "^0.2.17",
- "mocha": "^10.1.0",
- "prettier": "2.7.1",
- "sinon": "^14.0.2",
- "sinon-chai": "^3.7.0",
- "trace-unhandled": "^2.0.1",
- "ts-node": "^10.9.1",
- "ts-node-dev": "^2.0.0",
- "typescript": "^4.8.4"
- }
- }
|