forked from needle-innovision/nestjs-tenancy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.32 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@needle-innovision/nestjs-tenancy",
"version": "3.0.2",
"description": "Nestjs module for multitenancy support",
"author": "Sandeep K <[email protected]>",
"repository": "https://github.com/needle-innovision/nestjs-tenancy",
"license": "MIT",
"private": false,
"scripts": {
"lint": "eslint \"lib/**/*.ts\" --fix",
"format": "prettier \"lib/**/*.ts\" --write",
"build": "rm -rf dist && tsc -p tsconfig.build.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": "^9.1.5",
"@nestjs/common": "^9.1.6",
"@nestjs/core": "^9.1.6",
"@nestjs/mongoose": "^9.2.0",
"@nestjs/platform-express": "^9.1.6",
"@nestjs/schematics": "^9.0.3",
"@nestjs/testing": "^9.1.6",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.0",
"@types/node": "18.11.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.2.2",
"mongoose": "6.7.0",
"prettier": "2.7.1",
"reflect-metadata": "^0.1.13",
"release-it": "^15.5.0",
"rxjs": "^7.5.7",
"supertest": "6.3.1",
"ts-jest": "29.0.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"@nestjs/common": "^8.0.0 || ^9.0.0",
"@nestjs/core": "^8.0.0 || ^9.0.0",
"mongoose": "^6.3.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0"
},
"lint-staged": {
"**/*.{ts,json}": []
},
"dependencies": {
"@nestjs/microservices": "^9.2.0"
}
}