-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.72 KB
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
{
"name": "nestjs-cloud-logging",
"version": "1.0.8",
"description": "Extended default NestJS logger with Winston transporter for Google Cloud Logging.",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint src/**/*.ts --ignore-pattern src/**/*.spec.ts",
"prebuild": "rimraf dist",
"build": "tsc"
},
"dependencies": {
"@google-cloud/logging-winston": "^6.0.0",
"@nestjs/common": "^10.4.15",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "^10.4.15",
"@nestjs/jwt": "^10.2.0",
"@nestjs/platform-express": "^10.4.15",
"reflect-metadata": "^0.1.14",
"rimraf": "^5.0.10",
"rxjs": "^7.8.1",
"type-fest": "^4.30.0",
"uuid": "^9.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@nestjs/cli": "^10.4.9",
"@nestjs/schematics": "^10.2.3",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/budiselic/nestjs-cloud-logging.git"
},
"keywords": [
"nestjs",
"logger",
"cloud",
"logging",
"console",
"winston"
],
"author": "Antonio Budiselić",
"license": "MIT",
"bugs": {
"url": "https://github.com/budiselic/nestjs-cloud-logging/issues"
},
"homepage": "https://github.com/budiselic/nestjs-cloud-logging#readme"
}