-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
97 lines (97 loc) · 2.74 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "nestjs-mtenant",
"version": "0.1.1",
"private": false,
"description": "NestJS - a module to enable multitenancy support with deep integration into the system as whole",
"keywords": [
"nest",
"tenant",
"multitenanrt",
"whitelabel",
"namespace"
],
"homepage": "https://github.com/AlexanderC/nestjs-mtenant#readme",
"bugs": {
"url": "https://github.com/AlexanderC/nestjs-mtenant/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexanderC/nestjs-mtenant.git"
},
"license": "MIT",
"author": "Alex Cucer<[email protected]>",
"contributors": [
"Alex Cucer <[email protected]>"
],
"scripts": {
"build": "npx tsc -p tsconfig.json",
"deploy": "sh ./publish.sh",
"format": "npx prettier **/**/*.ts --ignore-path ./.prettierignore --write",
"major": "npm run release -- --release-as major",
"minor": "npm run release -- --release-as minor",
"patch": "npm run release -- --release-as patch",
"release": "npx standard-version",
"test": "npx jest",
"test:watch": "npx jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"@nestjs-steroids/async-context": "^2.0.0"
},
"optionalDependencies": {
"ioredis": "^5.2.4",
"sequelize": "6.26.0",
"sequelize-typescript": "2.1.5"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-angular": "^17.3.0",
"@golevelup/nestjs-testing": "^0.1.2",
"@nestjs/cli": "^10.0.3",
"@nestjs/common": "^10.0.2",
"@nestjs/core": "^10.0.2",
"@nestjs/schematics": "^10.0.1",
"@nestjs/swagger": "^7.0.2",
"@nestjs/testing": "^10.0.2",
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.2.4",
"@types/node": "^20.3.1",
"@types/sequelize": "^4.28.14",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"sequelize": "^6.32.1",
"sequelize-typescript": "2.1.5",
"standard-version": "^9.5.0",
"supertest": "^6.3.2",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^5.1.3"
},
"peerDependencies": {
"@nestjs/common": "^9.2.1",
"@nestjs/core": "^9.2.1",
"@nestjs/swagger": "^6.1.3"
}
}