-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·66 lines (66 loc) · 2.03 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
{
"name": "@teammaestro/sequelize-common",
"version": "13.1.0",
"description": "A common set of models and functions that we use throughout most of our Sequelize projects",
"keywords": [
"Typescript"
],
"author": "TeamMaestro",
"homepage": "https://github.com/TeamMaestro/sequelize-common",
"repository": {
"type": "git",
"url": "https://github.com/TeamMaestro/sequelize-common.git"
},
"bugs": {
"url": "https://github.com/TeamMaestro/sequelize-common/issues"
},
"license": "ISC",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc -w",
"start": "tsc",
"postpublish": "git push && git push --tags",
"prepack": "tsc",
"postpack": "rm *.d.ts && rm *.js && rm -Rf modules"
},
"peerDependencies": {
"@teammaestro/nestjs-common": "^20.1",
"moment": "^2.25.3",
"sequelize": "^5.18.1",
"sequelize-typescript": "^1.0.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@nestjs/common": "^8.0",
"@nestjs/core": "^8.0",
"@nestjs/microservices": "^8.0",
"@nestjs/passport": "^8.0",
"@nestjs/testing": "^8.0",
"@nestjs/swagger": "^5.2.0",
"@teammaestro/nestjs-common": "^20.1.0",
"@teammaestro/node-common": "^4.0.0",
"@types/bluebird": "^3.5.27",
"@types/moment": "^2.13.0",
"@types/validator": "^10.11.3",
"class-validator": "^0.13.1",
"config": "^3.3.6",
"log4js": "^6.3.0",
"moment": "^2.25.3",
"passport": "^0.4.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.6",
"sequelize": "^5.18.1",
"sequelize-typescript": "^1.0.0",
"tslint": "^5.19.0",
"typescript": "4.6.3"
},
"dependencies": {
"deepmerge": "^4.2.2",
"is-plain-object": "^3.0.0"
},
"peerDependenciesMeta": {
"@teammaestro/nestjs-common": {
"optional": true
}
}
}