-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.21 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@andreafspeziale/nestjs-log",
"version": "1.2.0",
"description": "A Logger module for Nest - modern, fast, powerful node.js web framework",
"author": "Andrea Francesco Speziale",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "/~https://github.com/andreafspeziale/nestjs-log"
},
"bugs": {
"url": "/~https://github.com/andreafspeziale/nestjs-log/issues"
},
"homepage": "/~https://github.com/andreafspeziale/nestjs-log#readme",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"prepare": "husky",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"format": "prettier --write \"lib/**/*.ts\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"release": "release-it"
},
"keywords": [
"nest",
"nestjs",
"log",
"logger",
"winston"
],
"peerDependencies": {
"@nestjs/common": "^10.0.0 || ^11.0.0",
"@nestjs/platform-express": "^10.0.0 || ^11.0.0",
"@nestjs/platform-fastify": "^10.0.0 || ^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"joi": "^17.13.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"zod": "^3.0.0"
},
"peerDependenciesMeta": {
"@nestjs/platform-express": {
"optional": true
},
"@nestjs/platform-fastify": {
"optional": true
},
"class-transformer": {
"optional": true
},
"class-validator": {
"optional": true
},
"joi": {
"optional": true
},
"rxjs": {
"optional": true
},
"zod": {
"optional": true
}
},
"dependencies": {
"cls-rtracer": "^2.6.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@nestjs/common": "^11.0.10",
"@nestjs/config": "^4.0.0",
"@nestjs/core": "^11.0.10",
"@nestjs/platform-express": "^11.0.10",
"@nestjs/platform-fastify": "^11.0.10",
"@nestjs/testing": "^11.0.10",
"@release-it/conventional-changelog": "^10.0.0",
"@tsconfig/node20": "20.1.4",
"@tsconfig/recommended": "1.0.8",
"@tsconfig/strictest": "2.0.5",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unused-imports": "^4.1.4",
"fastify": "^4.29.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"joi": "^17.13.3",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"reflect-metadata": "^0.2.2",
"release-it": "^18.1.2",
"rimraf": "^6.0.1",
"rxjs": "^7.8.2",
"ts-jest": "^29.2.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0",
"zod": "^3.24.2",
"zod-validation-error": "^3.4.0"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": "npm run lint"
},
"engines": {
"node": ">=20.16.0"
},
"packageManager": "pnpm@9.15.6"
}