chore: update pg-native handling and deps
Showing
This diff is collapsed.
| { | ||
| "name": "tabulator-another", | ||
| "version": "0.0.1", | ||
| "description": "", | ||
| "author": "", | ||
| "private": true, | ||
| "description": "", | ||
| "license": "UNLICENSED", | ||
| "author": "", | ||
| "scripts": { | ||
| "build": "nest build", | ||
| "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", | ||
| "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | ||
| "start": "nest start", | ||
| "start:dev": "nest start --watch", | ||
| "start:debug": "nest start --debug --watch", | ||
| "start:dev": "nest start --watch", | ||
| "start:prod": "node dist/main", | ||
| "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", | ||
| "test": "jest", | ||
| "test:watch": "jest --watch", | ||
| "test:cov": "jest --coverage", | ||
| "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": { | ||
| "@nestjs/axios": "^4.0.0", | ||
| ... | ... | @@ -27,18 +44,17 @@ |
| "@nestjs/platform-express": "^11.0.1", | ||
| "@nestjs/swagger": "^11.1.5", | ||
| "@nestjs/typeorm": "^11.0.0", | ||
| "aragami": "^1.2.6", | ||
| "aragami": "^1.2.10", | ||
| "class-transformer": "^0.5.1", | ||
| "class-validator": "^0.14.1", | ||
| "crypto-random-string": "3.3.1", | ||
| "iconv-lite": "^0.6.3", | ||
| "lodash": "^4.17.21", | ||
| "nesties": "^1.1.1", | ||
| "nestjs-aragami": "^1.2.0", | ||
| "nesties": "^1.1.30", | ||
| "nestjs-aragami": "^1.2.1", | ||
| "nestjs-mycard": "^4.0.2", | ||
| "nicot": "^1.1.21", | ||
| "nicot": "^1.3.6", | ||
| "pg": "^8.14.1", | ||
| "pg-native": "^3.3.0", | ||
| "reflect-metadata": "^0.2.2", | ||
| "rxjs": "^7.8.1", | ||
| "typeorm": "^0.3.22", | ||
| ... | ... | @@ -76,22 +92,5 @@ |
| "tsconfig-paths": "^4.2.0", | ||
| "typescript": "^5.7.3", | ||
| "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