nestjs-reverse-engineering
Version:
A powerful TypeScript/NestJS library for database reverse engineering, entity generation, and CRUD operations
78 lines (77 loc) • 2.77 kB
JSON
{
"name": "nestjs-reverse-engineering",
"version": "0.0.5",
"description": "A powerful TypeScript/NestJS library for database reverse engineering, entity generation, and CRUD operations",
"author": "Surya suryaprakashdas76@gmail.com",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"nestjs-reverse-engineering": "dist/cli/reverse-engineer-new.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"package.json"
],
"keywords": [
"nestjs-reverse-engineering",
"nestjs",
"typescript",
"reverse-engineering",
"crud",
"code-generation",
"typeorm",
"database",
"postgres",
"mysql",
"entity-generation"
],
"repository": {
"type": "git",
"url": "https://github.com/SuryaDivami/reverse-engineering.git"
},
"homepage": "https://github.com/SuryaDivami/reverse-engineering#readme",
"bugs": {
"url": "https://github.com/SuryaDivami/reverse-engineering/issues"
},
"scripts": {
"build": "tsc -p tsconfig.lib.json && npm run build:cli",
"build:watch": "tsc -p tsconfig.lib.json --watch",
"build:cli": "mkdir -p dist/cli && npx tsc cli/reverse-engineer-new.ts --outDir dist --target es2020 --module commonjs --moduleResolution node --esModuleInterop --allowSyntheticDefaultImports --experimentalDecorators --emitDecoratorMetadata --skipLibCheck && sed -i '' '1d' dist/cli/reverse-engineer-new.js && echo '#!/usr/bin/env node' | cat - dist/cli/reverse-engineer-new.js > temp && mv temp dist/cli/reverse-engineer-new.js && chmod +x dist/cli/reverse-engineer-new.js",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist",
"cli": "npx ts-node cli/reverse-engineer-new.ts",
"cli:init": "npx ts-node cli/reverse-engineer-new.ts init",
"cli:test": "npx ts-node cli/reverse-engineer-new.ts test",
"cli:tables": "npx ts-node cli/reverse-engineer-new.ts tables",
"cli:entities": "npx ts-node cli/reverse-engineer-new.ts entities",
"cli:crud": "npx ts-node cli/reverse-engineer-new.ts crud",
"cli:all": "npx ts-node cli/reverse-engineer-new.ts all"
},
"dependencies": {
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/mapped-types": "^2.1.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/swagger": "^11.2.0",
"@nestjs/typeorm": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"commander": "^12.1.0",
"glob": "^11.0.3",
"pg": "^8.16.3",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1",
"typeorm": "^0.3.25"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/node": "^20.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}