chore: update pg-native handling and deps
Showing
This source diff could not be displayed because it is too large. You can view the blob instead.
| { | { | ||
| "name": "tabulator-another", | "name": "tabulator-another", | ||
| "version": "0.0.1", | "version": "0.0.1", | ||
| "description": "", | |||
| "author": "", | |||
| "private": true, | "private": true, | ||
| "description": "", | |||
| "license": "UNLICENSED", | "license": "UNLICENSED", | ||
| "author": "", | |||
| "scripts": { | "scripts": { | ||
| "build": "nest build", | "build": "nest build", | ||
| "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | ||
| "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | |||
| "start": "nest start", | "start": "nest start", | ||
| "start:dev": "nest start --watch", | |||
| "start:debug": "nest start --debug --watch", | "start:debug": "nest start --debug --watch", | ||
| "start:dev": "nest start --watch", | |||
| "start:prod": "node dist/main", | "start:prod": "node dist/main", | ||
| "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | |||
| "test": "jest", | "test": "jest", | ||
| "test:watch": "jest --watch", | |||
| "test:cov": "jest --coverage", | "test:cov": "jest --coverage", | ||
| "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", | "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", | ||
| "test:e2e": "jest --config ./test/jest-e2e.json" | "test:e2e": "jest --config ./test/jest-e2e.json", | ||
| "test:watch": "jest --watch" | |||
| }, | |||
| "jest": { | |||
| "collectCoverageFrom": [ | |||
| "**/*.(t|j)s" | |||
| ], | |||
| "coverageDirectory": "../coverage", | |||
| "moduleFileExtensions": [ | |||
| "js", | |||
| "json", | |||
| "ts" | |||
| ], | |||
| "rootDir": "src", | |||
| "testEnvironment": "node", | |||
| "testRegex": ".*\\.spec\\.ts$", | |||
| "transform": { | |||
| "^.+\\.(t|j)s$": "ts-jest" | |||
| } | |||
| }, | }, | ||
| "dependencies": { | "dependencies": { | ||
| "@nestjs/axios": "^4.0.0", | "@nestjs/axios": "^4.0.0", | ||
| ... | @@ -27,18 +44,17 @@ | ... | @@ -27,18 +44,17 @@ |
| "@nestjs/platform-express": "^11.0.1", | "@nestjs/platform-express": "^11.0.1", | ||
| "@nestjs/swagger": "^11.1.5", | "@nestjs/swagger": "^11.1.5", | ||
| "@nestjs/typeorm": "^11.0.0", | "@nestjs/typeorm": "^11.0.0", | ||
| "aragami": "^1.2.6", | "aragami": "^1.2.10", | ||
| "class-transformer": "^0.5.1", | "class-transformer": "^0.5.1", | ||
| "class-validator": "^0.14.1", | "class-validator": "^0.14.1", | ||
| "crypto-random-string": "3.3.1", | "crypto-random-string": "3.3.1", | ||
| "iconv-lite": "^0.6.3", | "iconv-lite": "^0.6.3", | ||
| "lodash": "^4.17.21", | "lodash": "^4.17.21", | ||
| "nesties": "^1.1.1", | "nesties": "^1.1.30", | ||
| "nestjs-aragami": "^1.2.0", | "nestjs-aragami": "^1.2.1", | ||
| "nestjs-mycard": "^4.0.2", | "nestjs-mycard": "^4.0.2", | ||
| "nicot": "^1.1.21", | "nicot": "^1.3.6", | ||
| "pg": "^8.14.1", | "pg": "^8.14.1", | ||
| "pg-native": "^3.3.0", | |||
| "reflect-metadata": "^0.2.2", | "reflect-metadata": "^0.2.2", | ||
| "rxjs": "^7.8.1", | "rxjs": "^7.8.1", | ||
| "typeorm": "^0.3.22", | "typeorm": "^0.3.22", | ||
| ... | @@ -76,22 +92,5 @@ | ... | @@ -76,22 +92,5 @@ |
| "tsconfig-paths": "^4.2.0", | "tsconfig-paths": "^4.2.0", | ||
| "typescript": "^5.7.3", | "typescript": "^5.7.3", | ||
| "typescript-eslint": "^8.20.0" | "typescript-eslint": "^8.20.0" | ||
| }, | |||
| "jest": { | |||
| "moduleFileExtensions": [ | |||
| "js", | |||
| "json", | |||
| "ts" | |||
| ], | |||
| "rootDir": "src", | |||
| "testRegex": ".*\\.spec\\.ts$", | |||
| "transform": { | |||
| "^.+\\.(t|j)s$": "ts-jest" | |||
| }, | |||
| "collectCoverageFrom": [ | |||
| "**/*.(t|j)s" | |||
| ], | |||
| "coverageDirectory": "../coverage", | |||
| "testEnvironment": "node" | |||
| } | } | ||
| } | } | ||
| \ No newline at end of file |
Please register or sign in to comment