xcally-nest-library 0.0.28 → 0.0.29

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. package/package.json +20 -19
package/package.json CHANGED
@@ -1,32 +1,18 @@
1
1
  {
2
2
  "name": "xcally-nest-library",
3
- "version": "0.0.28",
3
+ "version": "0.0.29",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "author": "",
8
8
  "license": "UNLICENSED",
9
- "scripts": {
10
- "bump:patch": "npm version patch -m \"Bump version to %s\"",
11
- "prepublishOnly": "npm run build",
12
- "build": "tsc",
13
- "build:watch": "rimraf dist && tsc-watch -b -v",
14
- "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
15
- "prettier:check": "prettier --check ./**/*.{ts,js,json,*rc}",
16
- "prettier:write": "prettier --write ./**/*.{ts,js,json,*rc}",
17
- "start": "nest start",
18
- "start:dev": "nest start --watch",
19
- "start:debug": "nest start --debug --watch",
20
- "start:prod": "node dist/main",
21
- "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
22
- "lib:link": "pnpm link --global",
23
- "lib:unlink": "pnpm unlink xcally-nest-libs --global"
24
- },
25
9
  "dependencies": {
26
10
  "@nestjs/common": "^11.0.7",
27
11
  "@nestjs/config": "^4.0.0",
28
12
  "@nestjs/core": "^11.0.7",
29
- "nestjs-pino": "^4.3.0"
13
+ "nestjs-pino": "^4.3.0",
14
+ "pino": "^9.6.0",
15
+ "pino-pretty": "^13.0.0"
30
16
  },
31
17
  "devDependencies": {
32
18
  "@nestjs/cli": "^11.0.2",
@@ -41,5 +27,20 @@
41
27
  "ts-node": "^10.9.2",
42
28
  "tsc-watch": "^6.2.1",
43
29
  "typescript": "^5.7.3"
30
+ },
31
+ "scripts": {
32
+ "bump:patch": "npm version patch -m \"Bump version to %s\"",
33
+ "build": "tsc",
34
+ "build:watch": "rimraf dist && tsc-watch -b -v",
35
+ "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
36
+ "prettier:check": "prettier --check ./**/*.{ts,js,json,*rc}",
37
+ "prettier:write": "prettier --write ./**/*.{ts,js,json,*rc}",
38
+ "start": "nest start",
39
+ "start:dev": "nest start --watch",
40
+ "start:debug": "nest start --debug --watch",
41
+ "start:prod": "node dist/main",
42
+ "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
43
+ "lib:link": "pnpm link --global",
44
+ "lib:unlink": "pnpm unlink xcally-nest-libs --global"
44
45
  }
45
- }
46
+ }