-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.38 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
{
"name": "nestjs-pretty-logger",
"version": "0.3.3",
"private": true,
"description": "Elevate NestJS logging with stylish, file-redirected, and real-time capable logging based on consola. Compact, powerful, and easy to integrate",
"author": "Innei",
"license": "MIT",
"repository": {
"type": "git",
"url": "/~https://github.com/Innei/nestjs-pretty-logger",
"directory": "Innei/nestjs-pretty-logger"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --ignore-path ./.prettierignore --write ",
"eslint --cache"
]
},
"bump": {
"before": [
"npm run build"
],
"publish": true,
"changelog": true,
"mode": "monorepo",
"packages": [
"packages/*"
]
},
"scripts": {
"test": "vitest",
"release": "bump",
"build": "pnpm -r run build"
},
"devDependencies": {
"@innei/bump-version": "1.5.10",
"@innei/eslint-config-react-ts": "0.11.1",
"@innei/eslint-config-ts": "0.11.1",
"@innei/prettier": "0.12.0",
"@nestjs/common": "^10.2.10",
"@types/node": "20.8.10",
"esbuild": "0.19.5",
"husky": "8.0.3",
"lint-staged": "15.0.2",
"prettier": "3.0.3",
"tslib": "2.6.2",
"tsup": "8.0.2",
"typescript": "5.2.2",
"vite": "4.5.0",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6"
}
}