-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 1.96 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
{
"name": "nestjs-pino-stackdriver",
"version": "2.2.1",
"description": "NestJS Pino logger with Stackdriver support",
"author": "Jacob Dharandas Méndez <j.dharandas@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PrestaShopCorp/nestjs-pino-stackdriver.git"
},
"keywords": [
"nestjs",
"gcp",
"stackdriver",
"logger",
"pino"
],
"scripts": {
"test": "jest",
"prepack": "yarn run build",
"build": "tsc -p tsconfig.json",
"format": "prettier --write \"**/*.ts\""
},
"files": [
"index.*",
"dist/",
"package.json",
"README.md"
],
"dependencies": {
"@google-cloud/trace-agent": "^5.1.1",
"@nestjs/bull": "^0.3.1",
"@nestjs/common": ">=7.6.7",
"@nestjs/core": ">=7.6.7",
"any-base": "^1.1.0",
"bull": "^3.20.1",
"express": "^4.17.1",
"lodash": "^4.17.20",
"nestjs-context": "^0.12.0",
"pino": "^6.7.0",
"pino-pretty": "^4.3.0",
"reflect-metadata": "^0.1.13",
"serve-static": "^1.14.1",
"uuid": "^8.3.1"
},
"devDependencies": {
"@nestjs/config": "^0.6.1",
"@nestjs/cqrs": "^7.0.1",
"@types/bull": "^3.15.0",
"@types/express": "^4.17.9",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.165",
"@types/node": "^14.14.6",
"@types/pino": "^6.3.3",
"@types/supertest": "^2.0.8",
"@types/uuid": "^8.3.0",
"bull-arena": "^3.8.0",
"class-validator": "^0.12.2",
"husky": "4.3.0",
"jest": "26.6.3",
"jest-html-reporters": "^1.2.1",
"lint-staged": "10.5.1",
"prettier": "^1.18.2",
"ts-essentials": "^7.0.1",
"ts-jest": "^26.4.4",
"ts-loader": "^6.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.3.4"
},
"peerDependencies": {
"@nestjs/common": ">=7.6.7",
"@nestjs/core": ">=7.6.7"
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}