Skip to content

Commit

Permalink
Merge pull request #264 from jiho-kr/feature/npm-check-updates
Browse files Browse the repository at this point in the history
chore: update library
  • Loading branch information
jiho-kr authored Dec 18, 2023
2 parents c8e8d31 + 6360377 commit d4fd511
Show file tree
Hide file tree
Showing 4 changed files with 435 additions and 346 deletions.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,39 +33,39 @@
],
"license": "MIT",
"dependencies": {
"@nestjs/common": "^10.2.5",
"@nestjs/core": "^10.2.5",
"@nestjs/common": "^10.2.10",
"@nestjs/core": "^10.2.10",
"class-transformer": "0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"lodash": "4.17.21",
"reflect-metadata": "0.1.13",
"reflect-metadata": "0.2.1",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"typescript": "~5.3.2"
"typescript": "~5.3.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.7.0",
"@nestjs/platform-express": "^10.2.5",
"@nestjs/testing": "^10.2.5",
"@types/express": "^4.17.17",
"@commitlint/config-conventional": "^18.4.3",
"@nestjs/platform-express": "^10.2.10",
"@nestjs/testing": "^10.2.10",
"@types/express": "^4.17.21",
"@types/jest": "29.5.11",
"@types/lodash": "^4.14.198",
"@types/lodash": "^4.14.202",
"@types/node": "20.10.5",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"commitizen": "^4.3.0",
"commitlint": "^17.6.6",
"commitlint": "^18.4.3",
"eslint": "~8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^49.0.0",
"husky": "^8.0.3",
"jest": "29.7.0",
"lint-staged": "^14.0.0",
"prettier": "^2.8.8",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"release-it": "^17.0.1",
"ts-jest": "29.1.1",
"ts-node": "10.9.2"
Expand Down
5 changes: 4 additions & 1 deletion spec/module-config/other.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import { RedisConfigService } from '../config/redis-config.service';

@Injectable()
export class OtherService {
constructor(public appConfigService: AppConfigService, public redisConfigService: RedisConfigService) {}
constructor(
public appConfigService: AppConfigService,
public redisConfigService: RedisConfigService,
) {}

setLocalEnvironment() {
this.appConfigService.changeValue('env', NodeEnvironment.LOCAL);
Expand Down
5 changes: 4 additions & 1 deletion spec/module-config/test.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@ import { RedisConfigService } from '../config/redis-config.service';

@Injectable()
export class TestService {
constructor(public appConfigService: AppConfigService, public redisConfigService: RedisConfigService) {}
constructor(
public appConfigService: AppConfigService,
public redisConfigService: RedisConfigService,
) {}
}
Loading

0 comments on commit d4fd511

Please sign in to comment.