UNPKG

@tunnel-cast/nestjs

Version:

## About This is a Tunnel-Cast - NestJS integration package, wrap the `cast` application into the `NestJS` building blocks.

95 lines (94 loc) 2.82 kB
{ "name": "@tunnel-cast/nestjs", "version": "0.0.4", "description": "", "author": "Ofir G.", "license": "MIT", "types": "index.d.ts", "main": "index.ts", "keywords": [ "tunnel-cast", "nestjs-integration", "nestjs", "cast", "casting", "validation", "typescript" ], "scripts": { "single-pack": "sh ../../sh/prepack-build.sh && npm pack ./dist", "prepack": "echo 'Pack start'", "single-publish": "sh ../../sh/prepack-build.sh && npm publish ./dist", "single-publish:beta": "sh ../../sh/prepack-build.sh && npm publish ./dist --tag beta", "postpublish": "git tag v$npm_package_version", "prepublishOnly": "echo 'Publish start'", "prebuild": "rimraf dist", "build": "nest build", "format": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"", "start:prod": "node dist/main", "lint": "eslint \"{lib,apps,libs,test}/**/*.ts\" --fix", "test": "jest --config ./test/config/all.config.json", "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/config/e2e.config.json" }, "repository": { "url": "https://github.com/OfirTheOne/tunnel-cast-modules/tree/master/packages/nestjs", "type": "GitHub" }, "dependencies": { "@tunnel-cast/common": "^1.0.5", "@tunnel-cast/core": "^1.0.2" }, "devDependencies": { "@nestjs/cli": "^7.0.0", "@nestjs/common": "^7.0.0", "@nestjs/core": "^7.0.0", "@nestjs/platform-express": "^7.0.0", "@nestjs/schematics": "^7.0.0", "@nestjs/testing": "^7.0.0", "@types/express": "^4.17.3", "@types/jest": "26.0.10", "@types/node": "^13.9.1", "@types/supertest": "^2.0.10", "@typescript-eslint/eslint-plugin": "3.9.1", "@typescript-eslint/parser": "3.9.1", "axios": "^0.21.0", "eslint": "7.7.0", "eslint-config-prettier": "^6.10.0", "eslint-plugin-import": "^2.20.1", "jest": "26.4.2", "prettier": "^1.19.1", "reflect-metadata": "^0.1.12", "rimraf": "^3.0.2", "rxjs": "^6.0.0", "supertest": "^4.0.2", "ts-jest": "26.2.0", "ts-loader": "^6.2.1", "ts-node": "9.0.0", "tsconfig-paths": "^3.9.0", "typescript": "^3.7.4" }, "peerDependencies": { "@nestjs/common": "^6.0.0 || ^7.0.0", "@nestjs/core": "^6.0.0 || ^7.0.0", "@nestjs/platform-express": "^7.0.0", "reflect-metadata": "^0.1.12", "rxjs": "^6.0.0" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "lib", "testRegex": ".spec.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "coverageDirectory": "../coverage", "testEnvironment": "node" } }