1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "musare-backend",
- "private": true,
- "version": "backend-rewrite",
- "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 -r tsconfig-paths/register -i --transpile-only ${INSPECT_BRK} ./src/main.ts",
- "build": "tsc && tsc-alias",
- "prod": "node build/app/src/main.js",
- "lint": "eslint src --ext .js,.ts",
- "typescript": "tsc --noEmit",
- "test": "mocha -r ts-node/register -r tsconfig-paths/register 'tests/**/*.test.ts' 'src/**/*.spec.ts'"
- },
- "dependencies": {
- "axios": "^1.4.0",
- "bcrypt": "^5.1.0",
- "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": "^7.2.0",
- "mongoose-update-versioning": "^0.3.0",
- "nodemailer": "^6.9.2",
- "oauth": "^0.10.0",
- "redis": "^4.6.6",
- "retry-axios": "^3.0.0",
- "sha256": "^0.2.0",
- "ts-patch-mongoose": "^2.0.5",
- "ws": "^8.13.0"
- },
- "devDependencies": {
- "@microsoft/tsdoc": "^0.14.2",
- "@types/chai": "^4.3.5",
- "@types/config": "^3.3.0",
- "@types/express": "^4.17.17",
- "@types/mocha": "^10.0.1",
- "@types/sinon": "^10.0.14",
- "@types/sinon-chai": "^3.2.9",
- "@types/ws": "^8.5.4",
- "@typescript-eslint/eslint-plugin": "^5.59.5",
- "@typescript-eslint/parser": "^5.59.5",
- "chai": "^4.3.7",
- "chai-as-promised": "^7.1.1",
- "eslint": "^8.40.0",
- "eslint-config-airbnb-base": "^15.0.0",
- "eslint-config-prettier": "^8.8.0",
- "eslint-plugin-import": "^2.27.5",
- "eslint-plugin-prettier": "^4.2.1",
- "eslint-plugin-tsdoc": "^0.2.17",
- "mocha": "^10.2.0",
- "prettier": "2.8.8",
- "sinon": "^15.0.4",
- "sinon-chai": "^3.7.0",
- "trace-unhandled": "^2.0.1",
- "ts-node": "^10.9.1",
- "ts-node-dev": "^2.0.0",
- "tsc-alias": "^1.8.8",
- "tsconfig-paths": "^4.2.0",
- "typescript": "^5.0.4"
- }
- }
|