-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "nest-winston",
"version": "1.9.7",
"license": "MIT",
"description": "A Nest module wrapper for winston",
"keywords": [
"nestjs",
"winston",
"logger"
],
"author": "Marco Polichetti <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"lint": "eslint src/**/*.ts --ignore-pattern src/**/*.spec.ts",
"test": "jest",
"prebuild": "rimraf dist/*",
"build": "tsc"
},
"dependencies": {
"fast-safe-stringify": "^2.1.1"
},
"devDependencies": {
"@nestjs/common": "10.4.15",
"@nestjs/core": "10.4.15",
"@nestjs/platform-express": "10.4.15",
"@nestjs/testing": "10.4.15",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"jest": "29.7.0",
"reflect-metadata": "0.2.2",
"rimraf": "4.4.1",
"rxjs": "7.8.1",
"source-map-support": "0.5.21",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"winston": "3.16.0"
},
"peerDependencies": {
"@nestjs/common": "^5.0.0 || ^6.6.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"winston": "^3.0.0"
},
"homepage": "https://github.com/gremo/nest-winston#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gremo/nest-winston.git"
},
"bugs": {
"url": "https://github.com/gremo/nest-winston/issues"
}
}