@kitstack/nest-powertools
Version:
A comprehensive collection of NestJS powertools, decorators, and utilities to supercharge your backend development
103 lines (102 loc) • 2.58 kB
JSON
{
"name": "@kitstack/nest-powertools",
"version": "0.0.8",
"description": "A comprehensive collection of NestJS powertools, decorators, and utilities to supercharge your backend development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"nestjs",
"powertools",
"hooks",
"decorators",
"typescript",
"backend",
"api",
"guards",
"interceptors",
"pipes",
"authentication",
"authorization",
"kitstack"
],
"author": "Ali Raza Khan <kitstack@alirazakhan.me> (https://alirazakhan.me)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ALIRAZA47/nestjs-powertools.git"
},
"bugs": {
"url": "https://github.com/ALIRAZA47/nestjs-powertools/issues"
},
"homepage": "https://github.com/ALIRAZA47/nestjs-powertools#readme",
"peerDependencies": {
"@nestjs/axios": "^4.0.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/jwt": "^10.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.0.0",
"typeorm": "^0.3.0"
},
"dependencies": {
"@nestjs/passport": "^10.0.3",
"@nestjs/swagger": "^7.0.0",
"class-transformer": "^0.5.0",
"class-validator": "^0.14.0",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"swagger-ui-express": "^5.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.6.2",
"rimraf": "^5.0.0",
"ts-jest": "^29.0.0",
"typeorm": "^0.3.0",
"typescript": "^5.0.0"
},
"peerDependenciesMeta": {
"@nestjs/axios": {
"optional": false
},
"@nestjs/common": {
"optional": false
},
"@nestjs/core": {
"optional": false
},
"@nestjs/jwt": {
"optional": false
},
"reflect-metadata": {
"optional": false
},
"rxjs": {
"optional": false
},
"typeorm": {
"optional": false
}
}
}