issue #39
Some checks failed
Test CI / build (push) Failing after 28s

- 로그인 이후 access/refresh token 생성 및 반환 로직 구현
This commit is contained in:
2025-11-30 18:19:39 +09:00
parent 810b4c1fb0
commit 5c79aa18f4
20 changed files with 435 additions and 34 deletions

View File

@@ -6,13 +6,15 @@
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "NODE_ENV=prod nest build",
"build": "cross-env NODE_ENV=prod nest build",
"build:local": "cross-env NODE_ENV=local nest build",
"build:dev": "cross-env NODE_ENV=dev nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:local": "NODE_ENV=local nest start --watch",
"start:dev": "NODE_ENV=dev nest start --watch",
"start:local": "cross-env NODE_ENV=local nest start --watch",
"start:dev": "cross-env NODE_ENV=dev nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "NODE_ENV=prod node dist/main",
"start:prod": "cross-env NODE_ENV=prod node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
@@ -26,6 +28,8 @@
"@nestjs/common": "^11.0.1",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.0.1",
"@nestjs/jwt": "^11.0.1",
"@nestjs/passport": "^11.0.5",
"@nestjs/platform-express": "^11.0.1",
"bcrypt": "^6.0.0",
"dotenv": "^17.2.3",
@@ -34,6 +38,8 @@
"googleapis": "^166.0.0",
"ioredis": "^5.8.2",
"nodemailer": "^7.0.10",
"passport": "^0.7.0",
"passport-jwt": "^4.0.1",
"pg": "^8.16.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1"
@@ -50,8 +56,11 @@
"@types/jest": "^30.0.0",
"@types/node": "^22.10.7",
"@types/nodemailer": "^7.0.4",
"@types/passport": "^0",
"@types/passport-jwt": "^4.0.1",
"@types/pg": "^8.15.6",
"@types/supertest": "^6.0.2",
"cross-env": "^10.1.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",