-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.39 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
{
"name": "nestolog",
"version": "0.0.0-dev",
"license": "MIT",
"description": "Logger for NestJS, implements `LoggerService`",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"keywords": [
"nestjs",
"ololog",
"logging",
"nestjs-logger",
"logger"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/nestolog.git"
},
"bugs": {
"url": "https://github.com/unlight/nestolog/issues"
},
"homepage": "https://github.com/unlight/nestolog#readme",
"scripts": {
"testapp": "ts-node-dev app/main.ts",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "vitest run src",
"test:cov": "vitest run src --coverage",
"test:w": "vitest watch src",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:fix": "npm run eslint -- --fix",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"format:src": "prettier src --write",
"lint:commit": "sh Taskfile commit_lint",
"commit": "cz",
"build": "sh Taskfile buildMicrobundle4",
"test:d": "ndb node node_modules/vitest/vitest.mjs watch src"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"peerDependencies": {
"@nestjs/common": ">=10"
},
"dependencies": {
"ansicolor": "^2.0.3",
"ololog": "^1.1.175",
"stacktracey": "^2.1.8",
"string.bullet": "^1.0.12",
"string.ify": "^1.0.64",
"term-size": "2.X",
"tinydate": "^1.3.0",
"wrap-ansi": "7.X"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.17.0",
"@nestjs/common": "^10.3.8",
"@nestjs/core": "^10.4.15",
"@nestjs/platform-express": "^10.4.15",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@swc/core": "^1.10.6",
"@swc/helpers": "^0.5.15",
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@types/wrap-ansi": "3.X",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"@vitest/coverage-v8": "^2.1.8",
"cache-manager": "^6.3.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.4.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-wix-editor": "^3.3.0",
"express": "^4.21.2",
"globals": "^15.14.0",
"microbundle": "^0.15.1",
"prettier": "^3.4.2",
"reflect-metadata": "^0.2.2",
"request": "^2.88.2",
"rxjs": "^7.8.1",
"semantic-release": "^24.2.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1",
"vitest": "^2.1.8",
"watchexec-bin": "^1.0.0"
}
}