Skip to content

Commit

Permalink
Yarn Latest Aug 2024 (#142)
Browse files Browse the repository at this point in the history
# Background
Periodic yarn latest.

Also fixes the name of the eslint file:
![Screenshot 2024-08-18 at 18 36
23](https://github.com/user-attachments/assets/f8e2f69e-4675-47d3-b7ef-8c76456b06b6)


## Checklist Before PR Review
- [x] The following has been handled:
  -  `Draft` is set for this PR
  - `Title` is checked
  - `Background` is filled
  - `Assignee` is set
  - `Labels` are set
  - `development` is linked if related issue exists

## Checklist (Right Before PR Review Request)
- [x] The following has been handled:
  - `TODOs` are handled and checked
  - Final Operation Check is done
  - Make this PR as an open PR

## Checklist (Reviewers)
- [x] Check if there are any other missing TODOs that are not yet listed
- [x] Review Code
- [x] Every item on the checklist has been addressed accordingly
- [x] If `development` is associated to this PR, you must check if every
TODOs are handled
  • Loading branch information
mlajkim authored Aug 21, 2024
1 parent 3f7dc23 commit f5be9be
Show file tree
Hide file tree
Showing 4 changed files with 321 additions and 358 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js → eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
node: true,
jest: true,
},
ignorePatterns: ['.eslintrc.js'],
ignorePatterns: ['eslint.config.js'],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Nest TypeScript starter repository",
"license": "MIT",
"scripts": {
"inspect": "yarn format && yarn lint --fix && yarn tsc && yarn audit",
"inspect": "yarn format && yarn lint && yarn tsc && yarn audit",
"latest": "yarn logDate && yarn upgrade --latest && yarn audit && yarn inspect",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"logDate": "echo $(date +%y%m%d) > ./yarn-latest.record",
Expand All @@ -14,56 +14,56 @@
"dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"lint": "eslint --fix",
"test": "jest --config jest.config.js",
"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 ./jest.config.js"
},
"dependencies": {
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10",
"@nestjs/common": "^10.4.1",
"@nestjs/core": "^10.4.1",
"@nestjs/jwt": "^10.2.0",
"@nestjs/mongoose": "^10.0.10",
"@nestjs/platform-express": "^10.3.10",
"@nestjs/platform-express": "^10.4.1",
"@types/cookie-parser": "^1.4.7",
"axios": "^1.7.2",
"axios": "^1.7.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"cookie-parser": "^1.4.6",
"deep-object-diff": "^1.1.9",
"dotenv": "^16.4.5",
"google-auth-library": "^9.11.0",
"google-auth-library": "^9.13.0",
"iso-639-1": "^3.1.2",
"luxon": "^3.4.4",
"mongoose": "^8.5.1",
"openai": "^4.52.7",
"luxon": "^3.5.0",
"mongoose": "^8.5.3",
"openai": "^4.56.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"webpack": "^5.93.0"
},
"devDependencies": {
"@nestjs/cli": "^10.4.2",
"@nestjs/schematics": "^10.1.2",
"@nestjs/testing": "^10.3.10",
"@nestjs/cli": "^10.4.4",
"@nestjs/schematics": "^10.1.3",
"@nestjs/testing": "^10.4.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/node": "^22.4.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-jest": "^29.2.2",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.3"
"typescript": "^5.5.4"
}
}
2 changes: 1 addition & 1 deletion yarn-latest.record
Original file line number Diff line number Diff line change
@@ -1 +1 @@
240716
240818
Loading

0 comments on commit f5be9be

Please sign in to comment.