forked from swifterhq/nestjs-tenancy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.12 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
68
69
70
71
72
73
74
75
{
"name": "@nean/nestjs-tenancy",
"version": "3.3.0",
"description": "Nestjs module for multitenancy support",
"author": "Sandeep K <[email protected]>",
"maintainers": [
{
"email": "[email protected]",
"name": "Neranjen M V"
}
],
"engines": {
"node": ">=0.12"
},
"repository": "https://github.com/swifterhq/nestjs-tenancy",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public",
"cache": "tmp/"
},
"scripts": {
"lint": "eslint \"lib/**/*.ts\" \"tests/**/*.ts\" --fix",
"format": "prettier \"lib/**/*.ts\" \"tests/**/*.ts\" --write",
"copy-files": "cp ./{LICENSE,README.md,package.json} ./dist",
"build": "rm -rf dist && tsc -p tsconfig.json",
"postbuild": "npm run copy-files",
"precommit": "lint-staged",
"release": "release-it",
"test:e2e": "jest --config ./tests/jest-e2e.config.ts --runInBand",
"test:e2e:dev": "jest --config ./tests/jest-e2e.config.ts --runInBand --watch"
},
"devDependencies": {
"@nestjs/cli": "^7.5.6",
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"@nestjs/mongoose": "^7.2.4",
"@nestjs/platform-express": "^7.6.13",
"@nestjs/schematics": "^7.2.8",
"@nestjs/testing": "^7.6.13",
"@types/express": "^4.17.11",
"@types/jest": "26.0.20",
"@types/node": "^14.14.31",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"mongoose": "^5.9.14",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"release-it": "^14.4.1",
"rxjs": "^6.5.4",
"supertest": "^6.1.3",
"ts-jest": "26.5.3",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0",
"@nestjs/core": "^7.0.0",
"mongoose": "^5.11.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.6"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
}
}