nestjs-transaction
Version:
A library that extracts and provides only some of the functions of the 'typeorm-transactional' npm module that are needed to operate in the Nestjs + TypeORM environment
88 lines (87 loc) • 2.58 kB
JSON
{
"name": "nestjs-transaction",
"version": "1.1.3",
"description": "A library that extracts and provides only some of the functions of the 'typeorm-transactional' npm module that are needed to operate in the Nestjs + TypeORM environment",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/KIMBEOBWOO/nestjs-transaction.git"
},
"bugs": {
"url": "https://github.com/KIMBEOBWOO/nestjs-transaction/issues"
},
"homepage": "https://github.com/KIMBEOBWOO/nestjs-transaction#readme",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc -p tsconfig.build.json",
"test:set-up": "docker-compose -f test/docker-compose.yml up -d --build",
"test": "yarn test:set-up & jest --detectOpenHandles",
"migration:generate": "bash ./scripts/migration.generate.sh",
"migration:run": "bash ./scripts/migration.run.sh",
"migration:revert": "bash ./scripts/migration.revert.sh",
"seed:run": "bash ./scripts/seed.run.sh"
},
"engines": {
"node": ">=16"
},
"keywords": [
"nestjs",
"typescript",
"typescript-orm",
"typeorm",
"orm",
"cls-hooked",
"transaction",
"isolation",
"decorator"
],
"author": {
"name": "KIMBEOBWOO",
"email": "qjqdn1568@naver.com"
},
"license": "MIT",
"dependencies": {
"@toss/nestjs-aop": "^2.1.6",
"eventemitter2": "^6.4.9"
},
"peerDependencies": {
"@nestjs/common": "^8 || ^9 || ^10",
"@nestjs/core": "^8 || ^9 || ^10",
"@nestjs/typeorm": "^8 || ^9 || ^10",
"reflect-metadata": ">= 0.1.12",
"typeorm": ">= 0.3.0"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@nestjs/common": "^8.4.7",
"@nestjs/core": "^8.4.7",
"@nestjs/platform-express": "^8.4.7",
"@nestjs/testing": "^8.4.7",
"@nestjs/typeorm": "^10.0.1",
"@types/jest": "^28.1.8",
"@types/node": "^16.18.64",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "~5.62.0",
"@typescript-eslint/parser": "~5.62.0",
"eslint": "8.54.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^28.1.3",
"mysql": "^2.18.1",
"pg": "^8.11.3",
"prettier": "^2.8.8",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"supertest": "^6.3.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typeorm": "^0.3.17",
"typeorm-extension": "^3.1.1",
"typescript": "~4.9.5"
}
}