{
    "name": "@leancoders/nestjs-tenancy",
    "version": "1.0.3",
    "description": "Nestjs module for multitenancy support",
    "author": "Lean Coders <hello@lean-coders.at>",
    "repository": "https://github.com/Lean-Coders/nestjs-tenancy",
    "license": "MIT",
    "private": false,
    "scripts": {
        "lint": "eslint \"lib/**/*.ts\" --fix",
        "format": "prettier \"lib/**/*.ts\" --write",
        "build": "rm -rf dist && tsc -p tsconfig.json",
        "precommit": "lint-staged",
        "prepublish:npm": "npm run build",
        "publish:npm": "npm publish --access public",
        "prepublish:next": "npm run build",
        "publish:next": "npm publish --access public --tag next",
        "prerelease": "npm run build",
        "release": "release-it",
        "test:e2e": "jest --config ./tests/jest-e2e.json --runInBand",
        "test:e2e:dev": "jest --config ./tests/jest-e2e.json --runInBand --watch"
    },
    "devDependencies": {
        "@nestjs/cli": "^7.0.0",
        "@nestjs/common": "^7.0.0",
        "@nestjs/core": "^7.0.0",
        "@nestjs/mongoose": "^7.0.1",
        "@nestjs/platform-express": "^7.0.0",
        "@nestjs/schematics": "^7.0.0",
        "@nestjs/testing": "^7.0.0",
        "@types/express": "^4.17.3",
        "@types/jest": "25.1.4",
        "@types/mongoose": "5.7.18",
        "@types/node": "^13.9.1",
        "@types/supertest": "^2.0.8",
        "@typescript-eslint/eslint-plugin": "^2.23.0",
        "@typescript-eslint/parser": "^2.23.0",
        "eslint": "^6.8.0",
        "eslint-config-prettier": "^6.10.0",
        "eslint-plugin-import": "^2.20.1",
        "jest": "^25.1.0",
        "mongoose": "^5.9.14",
        "prettier": "^1.19.1",
        "reflect-metadata": "^0.1.13",
        "release-it": "^13.6.1",
        "rxjs": "^6.5.4",
        "supertest": "^4.0.2",
        "ts-jest": "25.2.1",
        "ts-loader": "^6.2.1",
        "ts-node": "^8.6.2",
        "tsconfig-paths": "^3.9.0",
        "typescript": "^3.7.4"
    },
    "peerDependencies": {
        "@nestjs/common": "^6.0.0 || ^8.0.0",
        "@nestjs/core": "^6.0.0 || ^8.0.0",
        "mongoose": "^6.0.0",
        "reflect-metadata": "^0.1.12",
        "rxjs": "^7.1.0"
    },
    "lint-staged": {
        "*.ts": [
            "prettier --write"
        ]
    }
}