mirror of
https://github.com/dadosfera/maestro.git
synced 2026-09-13 22:54:48 +00:00
# 1.0.0 (2022-02-09) ### CI * Adding semantic-release/npm to modify package.json version ([51d6541](https://github.com/dadosfera/maestro/commit/51d65414a2027aa4d8df97c114f67142ad613bea)) * Update CI/CD ([160a745](https://github.com/dadosfera/maestro/commit/160a745cbae09a5b29f3a5b6e6551887b5835250)) ### Fix * CI/CD test ([f87a124](https://github.com/dadosfera/maestro/commit/f87a124de3d5103eb6c07f6f9a6270c05827cb39)) * CI/CD test ([1cecdfd](https://github.com/dadosfera/maestro/commit/1cecdfd13fa56e4f1ea25dd3a3edc4fc744c91a3)) * CI/CD test ([9eae14d](https://github.com/dadosfera/maestro/commit/9eae14d7630b2f8b77c66b81ecb25023e2b1bc3d)) * CI/CD test ([571f593](https://github.com/dadosfera/maestro/commit/571f593f638706b13e7ecbcf98c3aa02d514c372)) * Deploy eb init ([81ac5ea](https://github.com/dadosfera/maestro/commit/81ac5ea61c07b0b51507e3baa51dd8b3fda5acad)) * Image Tag ([067ef4c](https://github.com/dadosfera/maestro/commit/067ef4cc61cf09256493126df4be9365b235d905)) * Image Tag ([a3d62b7](https://github.com/dadosfera/maestro/commit/a3d62b7098f974d488a9b4bf4795ebf7c9694c8c)) * Removing CHANGELOG ([da24b3b](https://github.com/dadosfera/maestro/commit/da24b3bb2c350932175510b8bb2aa42ebe636468)) * RM if exists path .elasticbeanstalk ([91a878c](https://github.com/dadosfera/maestro/commit/91a878cc1d069faff56dfd7ce3a712a82839fdfa)) ### improvements * Improvements to version release rules ([8fae9cc](https://github.com/dadosfera/maestro/commit/8fae9ccc71a586523e0e09632d19e96f99c06bd3)) ### New * Adding semantic versioning ([6a5294c](https://github.com/dadosfera/maestro/commit/6a5294c68bcd0794ecfa52923763468ea48ff7ba)) * Init Release ([4cc70a8](https://github.com/dadosfera/maestro/commit/4cc70a8a53d71828d1c644af56f71851e2a7ed1f)) * release ([27cdeb4](https://github.com/dadosfera/maestro/commit/27cdeb4d2d675ce957ca5342a25f846ab36b71d4)) * release ([ce97a1d](https://github.com/dadosfera/maestro/commit/ce97a1df7885ee0c57031e9abedb01b238d89fb2)) * Test new release ([666cbda](https://github.com/dadosfera/maestro/commit/666cbda32f5166dcbe7e2e28de29080be4058f14)) * Test semantic ([f7f5dae](https://github.com/dadosfera/maestro/commit/f7f5dae821573b8395351c99ee94df7d1857f02c)) * Test semantic ([e70d914](https://github.com/dadosfera/maestro/commit/e70d9149057983fba71d25d8fbf9134ea3bb881c)) ### Update * Comment test ([73068a2](https://github.com/dadosfera/maestro/commit/73068a254824f28a6c11740a3312d9a52cbca06c)) * Modifying environments (dev, stg and prd) to (alpha, beta and production) ([097d179](https://github.com/dadosfera/maestro/commit/097d17977005c3fd0527ed03366a78b2dac8f8fc)) * Removing github token ([fcd0d19](https://github.com/dadosfera/maestro/commit/fcd0d19c9af049079970e7fa43869d6664a97549)) * Using dev branch ([f3e1881](https://github.com/dadosfera/maestro/commit/f3e1881c57cff5cfaca38466a9d6bc88ff7e2c5d)) * Using image_tag semantic ([c7f5cd4](https://github.com/dadosfera/maestro/commit/c7f5cd475e43d3cea1a06e46c0651345b2f35e4b))
85 lines
2.4 KiB
JSON
85 lines
2.4 KiB
JSON
{
|
|
"name": "grpc-server-and-client-nestjs-micro-pattern",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"author": "",
|
|
"private": true,
|
|
"license": "UNLICENSED",
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "nest build",
|
|
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"start": "nest start",
|
|
"start:dev": "nest start --watch",
|
|
"start:debug": "nest start --debug --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"
|
|
},
|
|
"dependencies": {
|
|
"@grpc/grpc-js": "^1.5.0",
|
|
"@grpc/proto-loader": "^0.6.9",
|
|
"@nestjs/common": "^8.0.0",
|
|
"@nestjs/core": "^8.0.0",
|
|
"@nestjs/mapped-types": "*",
|
|
"@nestjs/microservices": "^8.2.4",
|
|
"@nestjs/platform-express": "^8.0.0",
|
|
"@nestjs/swagger": "^5.1.5",
|
|
"axios": "^0.25.0",
|
|
"dotenv": "^14.2.0",
|
|
"grpc": "^1.24.11",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"jwk-to-pem": "^2.0.5",
|
|
"reflect-metadata": "^0.1.13",
|
|
"rimraf": "^3.0.2",
|
|
"rxjs": "^7.2.0",
|
|
"swagger-ui-express": "^4.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@nestjs/cli": "^8.0.0",
|
|
"@nestjs/schematics": "^8.0.0",
|
|
"@nestjs/testing": "^8.0.0",
|
|
"@types/express": "^4.17.13",
|
|
"@types/jest": "27.0.2",
|
|
"@types/jsonwebtoken": "^8.5.8",
|
|
"@types/jwk-to-pem": "^2.0.1",
|
|
"@types/node": "^16.0.0",
|
|
"@types/supertest": "^2.0.11",
|
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
"@typescript-eslint/parser": "^5.0.0",
|
|
"eslint": "^8.0.1",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"jest": "^27.2.5",
|
|
"prettier": "^2.3.2",
|
|
"source-map-support": "^0.5.20",
|
|
"supertest": "^6.1.3",
|
|
"ts-jest": "^27.0.3",
|
|
"ts-loader": "^9.2.3",
|
|
"ts-node": "^10.0.0",
|
|
"tsconfig-paths": "^3.10.1",
|
|
"typescript": "^4.3.5"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": "src",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"**/*.(t|j)s"
|
|
],
|
|
"coverageDirectory": "../coverage",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|