-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
707efd4
commit 211b527
Showing
38 changed files
with
1,644 additions
and
1,344 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,58 +15,42 @@ | |
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix" | ||
}, | ||
"dependencies": { | ||
"@fastify/static": "^7.0.0", | ||
"@nestjs/axios": "^3.0.3", | ||
"@nestjs/cache-manager": "^2.2.2", | ||
"@nestjs/common": "^10.4.4", | ||
"@nestjs/config": "^3.2.3", | ||
"@nestjs/core": "^10.4.4", | ||
"@fastify/static": "^7.0.4", | ||
"@keyv/redis": "^4.1.0", | ||
"@nestjs/axios": "^3.1.3", | ||
"@nestjs/cache-manager": "3.0.0-next.0", | ||
"@nestjs/common": "^10.4.15", | ||
"@nestjs/config": "^3.3.0", | ||
"@nestjs/core": "^10.4.15", | ||
"@nestjs/jwt": "^10.2.0", | ||
"@nestjs/platform-fastify": "^10.4.4", | ||
"@nestjs/swagger": "^7.4.2", | ||
"axios": "^1.7.7", | ||
"cache-manager": "^5.7.6", | ||
"cache-manager-redis-yet": "^5.1.5", | ||
"fastify": "^5.0.0", | ||
"mongoose": "^8.6.4", | ||
"@nestjs/platform-fastify": "^10.4.15", | ||
"@nestjs/swagger": "^8.1.0", | ||
"axios": "^1.7.9", | ||
"cache-manager": "^6.3.1", | ||
"fastify": "^4.28.1", | ||
"keyv": "^5.2.2", | ||
"mongoose": "^8.9.0", | ||
"nestjs-redox": "^1.2.2", | ||
"redoc": "^2.1.5", | ||
"redoc": "^2.2.0", | ||
"reflect-metadata": "^0.2.2", | ||
"rxjs": "^7.8.1" | ||
}, | ||
"devDependencies": { | ||
"@nestjs/cli": "^10.4.5", | ||
"@nestjs/schematics": "^10.1.4", | ||
"@types/node": "^22.7.3", | ||
"@typescript-eslint/eslint-plugin": "^8.7.0", | ||
"@typescript-eslint/parser": "^8.7.0", | ||
"eslint": "^8.57.1", | ||
"@nestjs/cli": "^10.4.9", | ||
"@nestjs/schematics": "^10.2.3", | ||
"@types/node": "^22.10.2", | ||
"@typescript-eslint/eslint-plugin": "^8.18.0", | ||
"@typescript-eslint/parser": "^8.18.0", | ||
"eslint": "^9.17.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"prettier": "^3.3.3", | ||
"prettier": "^3.4.2", | ||
"source-map-support": "^0.5.21", | ||
"supertest": "^7.0.0", | ||
"ts-loader": "^9.5.1", | ||
"ts-node": "^10.9.2", | ||
"tsconfig-paths": "^4.2.0", | ||
"typescript": "^5.6.2" | ||
}, | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"js", | ||
"json", | ||
"ts" | ||
], | ||
"rootDir": "src", | ||
"testRegex": ".*\\.spec\\.ts$", | ||
"transform": { | ||
"^.+\\.(t|j)s$": "ts-jest" | ||
}, | ||
"collectCoverageFrom": [ | ||
"**/*.(t|j)s" | ||
], | ||
"coverageDirectory": "../coverage", | ||
"testEnvironment": "node" | ||
"typescript": "^5.7.2" | ||
}, | ||
"packageManager": "[email protected]+sha512.0a203ffaed5a3f63242cd064c8fb5892366c103e328079318f78062f24ea8c9d50bc6a47aa3567cabefd824d170e78fa2745ed1f16b132e16436146b7688f19b" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
import { artistDto } from './artist.dto'; | ||
import { musicDto } from 'src/songs/dto/music.dto'; | ||
import { ArtistDto } from './artist.dto'; | ||
import { MusicDto } from 'src/songs/dto/music.dto'; | ||
|
||
export class artistSearchDto { | ||
artist: artistDto; | ||
export class ArtistSearchDto { | ||
artist: ArtistDto; | ||
music: { | ||
page: number; | ||
count: number; | ||
hasNext: boolean; | ||
data: musicDto[]; | ||
data: MusicDto[]; | ||
}; | ||
} | ||
|
||
export default artistSearchDto; | ||
export default ArtistSearchDto; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export class authCallbackRequestDto { | ||
export class AuthCallbackRequestDto { | ||
/** | ||
* SpaceWak OAuth2에서 발급한 authorization code | ||
* @example 8FZGv8vxfOFvaRV9SO6el | ||
*/ | ||
code: string; | ||
} | ||
|
||
export default authCallbackRequestDto; | ||
export default AuthCallbackRequestDto; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
export class authRefreshRequestDto { | ||
export class AuthRefreshRequestDto { | ||
/** | ||
* SpaceWak OAuth2에서 발급된 refresh token | ||
* @example eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMDQ1NjcwNTg1OTcyMDAzMDQwNzYiLCJpYXQiOjE3MDY4OTE1NzksImV4cCI6MTcwOTQ4MzU3OX0.j0fhOuROu2sNzUhiXeoimC6HR3Rf0d7pjZueGeVFXwI | ||
*/ | ||
refresh_token: string; | ||
} | ||
|
||
export default authRefreshRequestDto; | ||
export default AuthRefreshRequestDto; |
Oops, something went wrong.