diff --git a/README.md b/README.md index da24eaa..6013c93 100644 --- a/README.md +++ b/README.md @@ -1,98 +1,117 @@ -

- Nest Logo -

+# Nest App -[circleci-image]: https://img.shields.io/circleci/build/github/nestjs/nest/master?token=abc123def456 -[circleci-url]: https://circleci.com/gh/nestjs/nest +NestJS starter template with TypeORM, Swagger, validation, and security best practices. -

A progressive Node.js framework for building efficient and scalable server-side applications.

-

-NPM Version -Package License -NPM Downloads -CircleCI -Discord -Backers on Open Collective -Sponsors on Open Collective - Donate us - Support us - Follow us on Twitter -

- +## Tech Stack -## Description +- **NestJS** v11 +- **TypeORM** v0.3 + MySQL +- **Swagger** (OpenAPI) +- **class-validator** + **class-transformer** +- **Helmet** + **ThrottlerModule** -[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository. - -## Project setup +## Project Setup ```bash -$ yarn install +yarn install ``` -## Compile and run the project +Copy `.env.example` to `.env` and fill in your database credentials: ```bash -# development -$ yarn run start - -# watch mode -$ yarn run start:dev - -# production mode -$ yarn run start:prod +cp .env.example .env ``` -## Run tests +## Run + +```bash +# development (watch mode) +yarn start:dev + +# production +yarn build +yarn start:prod +``` + +API is available at `http://localhost:3000/api/v1` +Swagger docs at `http://localhost:3000/api/docs` + +## Database Migrations + +This project uses TypeORM migrations to manage database schema. **Do not use `synchronize: true`.** + +### Generate a migration from Entity changes + +After creating or modifying an Entity, generate a migration automatically: + +```bash +yarn migration:generate --name=CreateUser +``` + +This compares your Entity definitions against the current database schema and generates the corresponding SQL. + +### Create an empty migration + +For manual SQL (seed data, indexes, etc.): + +```bash +yarn migration:create --name=SeedData +``` + +### Run pending migrations + +```bash +yarn migration:run +``` + +### Revert the last migration + +```bash +yarn migration:revert +``` + +### Typical workflow + +```bash +# 1. Create or modify an Entity file +# 2. Generate migration +yarn migration:generate --name=AddEmailToUser + +# 3. Review the generated file in src/database/migrations/ +# 4. Run the migration +yarn migration:run +``` + +## Project Structure + +``` +src/ +├── common/ +│ ├── filters/ # Global exception filter +│ ├── interceptors/ # Response transform interceptor +│ └── interfaces/ # Shared interfaces (ApiResponse) +├── config/ +│ └── database.config.ts +├── database/ +│ ├── data-source.ts # TypeORM CLI data source +│ └── migrations/ # Migration files +├── app.module.ts +└── main.ts +``` + +## Testing ```bash # unit tests -$ yarn run test - -# e2e tests -$ yarn run test:e2e +yarn test # test coverage -$ yarn run test:cov +yarn test:cov + +# e2e tests +yarn test:e2e ``` -## Deployment - -When you're ready to deploy your NestJS application to production, there are some key steps you can take to ensure it runs as efficiently as possible. Check out the [deployment documentation](https://docs.nestjs.com/deployment) for more information. - -If you are looking for a cloud-based platform to deploy your NestJS application, check out [Mau](https://mau.nestjs.com), our official platform for deploying NestJS applications on AWS. Mau makes deployment straightforward and fast, requiring just a few simple steps: - -```bash -$ yarn install -g @nestjs/mau -$ mau deploy -``` - -With Mau, you can deploy your application in just a few clicks, allowing you to focus on building features rather than managing infrastructure. - -## Resources - -Check out a few resources that may come in handy when working with NestJS: - -- Visit the [NestJS Documentation](https://docs.nestjs.com) to learn more about the framework. -- For questions and support, please visit our [Discord channel](https://discord.gg/G7Qnnhy). -- To dive deeper and get more hands-on experience, check out our official video [courses](https://courses.nestjs.com/). -- Deploy your application to AWS with the help of [NestJS Mau](https://mau.nestjs.com) in just a few clicks. -- Visualize your application graph and interact with the NestJS application in real-time using [NestJS Devtools](https://devtools.nestjs.com). -- Need help with your project (part-time to full-time)? Check out our official [enterprise support](https://enterprise.nestjs.com). -- To stay in the loop and get updates, follow us on [X](https://x.com/nestframework) and [LinkedIn](https://linkedin.com/company/nestjs). -- Looking for a job, or have a job to offer? Check out our official [Jobs board](https://jobs.nestjs.com). - -## Support - -Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support). - -## Stay in touch - -- Author - [Kamil Myśliwiec](https://twitter.com/kammysliwiec) -- Website - [https://nestjs.com](https://nestjs.com/) -- Twitter - [@nestframework](https://twitter.com/nestframework) - ## License -Nest is [MIT licensed](https://github.com/nestjs/nest/blob/master/LICENSE). +[MIT](https://github.com/nestjs/nest/blob/master/LICENSE) diff --git a/eslint.config.mjs b/eslint.config.mjs index b11ccdf..3b4ba73 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -17,7 +17,7 @@ export default tseslint.config( ...globals.node, ...globals.jest, }, - sourceType: 'commonjs', + sourceType: 'module', parserOptions: { projectService: true, tsconfigRootDir: import.meta.dirname, diff --git a/package.json b/package.json index 9230a78..f5bd503 100644 --- a/package.json +++ b/package.json @@ -17,19 +17,30 @@ "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" + "test:e2e": "jest --config ./test/jest-e2e.json", + "typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js -d src/database/data-source.ts", + "migration:generate": "yarn typeorm migration:generate src/database/migrations/$npm_config_name", + "migration:create": "yarn typeorm migration:create src/database/migrations/$npm_config_name", + "migration:run": "yarn typeorm migration:run", + "migration:revert": "yarn typeorm migration:revert" }, "dependencies": { "@nestjs/common": "^11.0.1", "@nestjs/config": "^4.0.3", "@nestjs/core": "^11.0.1", "@nestjs/platform-express": "^11.0.1", + "@nestjs/swagger": "^11.2.6", + "@nestjs/throttler": "^6.5.0", "@nestjs/typeorm": "^11.0.0", + "class-transformer": "^0.5.1", "class-validator": "^0.15.1", + "dotenv": "^17.3.1", + "helmet": "^8.1.0", "mysql2": "^3.19.1", "reflect-metadata": "^0.2.2", "rxjs": "^7.8.1", - "typeorm": "^0.3.28" + "typeorm": "^0.3.28", + "typeorm-naming-strategies": "^4.1.0" }, "devDependencies": { "@eslint/eslintrc": "^3.2.0", @@ -67,6 +78,9 @@ "transform": { "^.+\\.(t|j)s$": "ts-jest" }, + "moduleNameMapper": { + "^@/(.*)$": "/$1" + }, "collectCoverageFrom": [ "**/*.(t|j)s" ], diff --git a/src/app.module.ts b/src/app.module.ts index f5846a7..090bbf5 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -1,6 +1,8 @@ import { Module } from '@nestjs/common'; +import { APP_GUARD } from '@nestjs/core'; import { ConfigModule, ConfigService } from '@nestjs/config'; import { TypeOrmModule } from '@nestjs/typeorm'; +import { ThrottlerModule, ThrottlerGuard } from '@nestjs/throttler'; import databaseConfig from '@/config/database.config'; @Module({ @@ -10,6 +12,31 @@ import databaseConfig from '@/config/database.config'; inject: [ConfigService], useFactory: (config: ConfigService) => config.get('database')!, }), + ThrottlerModule.forRoot({ + throttlers: [ + { + name: 'short', + ttl: 1000, + limit: 3, + }, + { + name: 'medium', + ttl: 10000, + limit: 20, + }, + { + name: 'long', + ttl: 60000, + limit: 100, + }, + ], + }), + ], + providers: [ + { + provide: APP_GUARD, + useClass: ThrottlerGuard, + }, ], }) export class AppModule {} diff --git a/src/common/filters/all-exceptions.filter.ts b/src/common/filters/all-exceptions.filter.ts new file mode 100644 index 0000000..116ceac --- /dev/null +++ b/src/common/filters/all-exceptions.filter.ts @@ -0,0 +1,56 @@ +import { + ExceptionFilter, + Catch, + ArgumentsHost, + HttpException, + HttpStatus, + Logger, +} from '@nestjs/common'; +import { Response, Request } from 'express'; +import { ApiResponse } from '@/common/interfaces/api-response.interface'; + +@Catch() +export class AllExceptionsFilter implements ExceptionFilter { + private readonly logger = new Logger(AllExceptionsFilter.name); + + catch(exception: unknown, host: ArgumentsHost): void { + const ctx = host.switchToHttp(); + const response = ctx.getResponse(); + const request = ctx.getRequest(); + + const status = + exception instanceof HttpException + ? exception.getStatus() + : HttpStatus.INTERNAL_SERVER_ERROR; + + const exceptionResponse = + exception instanceof HttpException + ? exception.getResponse() + : 'Internal server error'; + + let message: string; + if (typeof exceptionResponse === 'string') { + message = exceptionResponse; + } else { + const resp = exceptionResponse as Record; + message = Array.isArray(resp.message) + ? resp.message.join('; ') + : (resp.message as string) || 'Internal server error'; + } + + if (!(exception instanceof HttpException)) { + this.logger.error( + `Unexpected exception on ${request.method} ${request.url}`, + exception instanceof Error ? exception.stack : String(exception), + ); + } + + const body: ApiResponse = { + code: status, + message, + data: null, + }; + + response.status(status).json(body); + } +} diff --git a/src/common/interceptors/transform.interceptor.ts b/src/common/interceptors/transform.interceptor.ts new file mode 100644 index 0000000..842a25b --- /dev/null +++ b/src/common/interceptors/transform.interceptor.ts @@ -0,0 +1,26 @@ +import { + Injectable, + NestInterceptor, + ExecutionContext, + CallHandler, +} from '@nestjs/common'; +import { Observable, map } from 'rxjs'; +import { ApiResponse } from '@/common/interfaces/api-response.interface'; + +@Injectable() +export class TransformInterceptor + implements NestInterceptor> +{ + intercept( + _context: ExecutionContext, + next: CallHandler, + ): Observable> { + return next.handle().pipe( + map((data) => ({ + code: 0, + message: 'success', + data, + })), + ); + } +} diff --git a/src/common/interfaces/api-response.interface.ts b/src/common/interfaces/api-response.interface.ts new file mode 100644 index 0000000..f33828d --- /dev/null +++ b/src/common/interfaces/api-response.interface.ts @@ -0,0 +1,5 @@ +export interface ApiResponse { + code: number; + message: string; + data: T; +} diff --git a/src/config/database.config.ts b/src/config/database.config.ts index 786a196..97f437b 100644 --- a/src/config/database.config.ts +++ b/src/config/database.config.ts @@ -1,5 +1,8 @@ import { registerAs } from '@nestjs/config'; import { TypeOrmModuleOptions } from '@nestjs/typeorm'; +import { SnakeNamingStrategy } from 'typeorm-naming-strategies'; + +const isProduction = process.env.NODE_ENV === 'production'; export default registerAs( 'database', @@ -11,8 +14,10 @@ export default registerAs( password: process.env.DB_PASSWORD || '', database: process.env.DB_DATABASE, autoLoadEntities: true, - synchronize: process.env.NODE_ENV !== 'production', - logging: - process.env.NODE_ENV !== 'production' ? ['query', 'error'] : ['error'], + synchronize: false, + migrationsRun: false, + migrations: ['dist/database/migrations/*.js'], + namingStrategy: new SnakeNamingStrategy(), + logging: isProduction ? ['error'] : ['query', 'error'], }), ); diff --git a/src/database/data-source.ts b/src/database/data-source.ts new file mode 100644 index 0000000..24dc217 --- /dev/null +++ b/src/database/data-source.ts @@ -0,0 +1,15 @@ +import 'dotenv/config'; +import { DataSource } from 'typeorm'; +import { SnakeNamingStrategy } from 'typeorm-naming-strategies'; + +export default new DataSource({ + type: 'mysql', + host: process.env.DB_HOST || 'localhost', + port: parseInt(process.env.DB_PORT ?? '3306', 10), + username: process.env.DB_USERNAME || 'root', + password: process.env.DB_PASSWORD || '', + database: process.env.DB_DATABASE, + namingStrategy: new SnakeNamingStrategy(), + entities: ['src/**/*.entity.ts'], + migrations: ['src/database/migrations/*.ts'], +}); diff --git a/src/database/migrations/.gitkeep b/src/database/migrations/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/main.ts b/src/main.ts index 648d311..e85a40a 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,23 +1,53 @@ import { NestFactory, Reflector } from '@nestjs/core'; -import { ClassSerializerInterceptor, ValidationPipe } from '@nestjs/common'; +import { + ClassSerializerInterceptor, + Logger, + ValidationPipe, +} from '@nestjs/common'; +import { DocumentBuilder, SwaggerModule } from '@nestjs/swagger'; +import helmet from 'helmet'; import 'reflect-metadata'; import { AppModule } from './app.module'; +import { AllExceptionsFilter } from '@/common/filters/all-exceptions.filter'; +import { TransformInterceptor } from '@/common/interceptors/transform.interceptor'; async function bootstrap() { const app = await NestFactory.create(AppModule); + const logger = new Logger('Bootstrap'); + + app.use(helmet()); + app.setGlobalPrefix('api/v1'); app.useGlobalPipes( new ValidationPipe({ - whitelist: true, // 自动剥离未声明的属性 - forbidNonWhitelisted: true, // 收到未声明属性时报错 - transform: true, // 自动类型转换 + whitelist: true, + forbidNonWhitelisted: true, + transform: true, }), ); - app.useGlobalInterceptors(new ClassSerializerInterceptor(app.get(Reflector))); + app.useGlobalInterceptors( + new ClassSerializerInterceptor(app.get(Reflector)), + new TransformInterceptor(), + ); - await app.listen(3000); - console.log('Application is running on: http://localhost:3000'); + app.useGlobalFilters(new AllExceptionsFilter()); + + const swaggerConfig = new DocumentBuilder() + .setTitle('Nest App API') + .setDescription('API documentation for Nest App') + .setVersion('1.0') + .addBearerAuth() + .build(); + const document = SwaggerModule.createDocument(app, swaggerConfig); + SwaggerModule.setup('api/docs', app, document); + + const port = process.env.PORT ?? 3000; + await app.listen(port); + logger.log(`Application is running on: http://localhost:${port}`); + logger.log( + `Swagger documentation available at: http://localhost:${port}/api/docs`, + ); } bootstrap(); diff --git a/test/app.e2e-spec.ts b/test/app.e2e-spec.ts deleted file mode 100644 index 36852c5..0000000 --- a/test/app.e2e-spec.ts +++ /dev/null @@ -1,25 +0,0 @@ -import { Test, TestingModule } from '@nestjs/testing'; -import { INestApplication } from '@nestjs/common'; -import request from 'supertest'; -import { App } from 'supertest/types'; -import { AppModule } from './../src/app.module'; - -describe('AppController (e2e)', () => { - let app: INestApplication; - - beforeEach(async () => { - const moduleFixture: TestingModule = await Test.createTestingModule({ - imports: [AppModule], - }).compile(); - - app = moduleFixture.createNestApplication(); - await app.init(); - }); - - it('/ (GET)', () => { - return request(app.getHttpServer()) - .get('/') - .expect(200) - .expect('Hello World!'); - }); -}); diff --git a/tsconfig.json b/tsconfig.json index c61c8c3..2dd824b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,10 +16,8 @@ "baseUrl": "./", "incremental": true, "skipLibCheck": true, - "strictNullChecks": true, + "strict": true, "forceConsistentCasingInFileNames": true, - "noImplicitAny": true, - "strictBindCallApply": true, "noFallthroughCasesInSwitch": true, "paths": { "@/*": ["src/*"] diff --git a/yarn.lock b/yarn.lock index e153e71..e89a324 100644 --- a/yarn.lock +++ b/yarn.lock @@ -920,6 +920,11 @@ resolved "https://registry.npmmirror.com/@lukeed/csprng/-/csprng-1.1.0.tgz#1e3e4bd05c1cc7a0b2ddbd8a03f39f6e4b5e6cfe" integrity sha512-Z7C/xXCiGWsg0KuKsHTKJxbWhpI3Vs5GwLfOean7MGyVFGqdRgBbAjOCh6u4bbjPc/8MJ2pZmK/0DLdCbivLDA== +"@microsoft/tsdoc@0.16.0": + version "0.16.0" + resolved "https://registry.npmmirror.com/@microsoft/tsdoc/-/tsdoc-0.16.0.tgz#2249090633e04063176863a050c8f0808d2b6d2b" + integrity sha512-xgAyonlVVS+q7Vc7qLW0UrJU7rSFcETRWsqdXZtjzRU8dF+6CkozTK4V4y1LwOX7j8r/vHphjDeMeGI4tNGeGA== + "@napi-rs/wasm-runtime@^0.2.11": version "0.2.12" resolved "https://registry.npmmirror.com/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz#3e78a8b96e6c33a6c517e1894efbd5385a7cb6f2" @@ -985,6 +990,11 @@ path-to-regexp "8.3.0" tslib "2.8.1" +"@nestjs/mapped-types@2.1.0": + version "2.1.0" + resolved "https://registry.npmmirror.com/@nestjs/mapped-types/-/mapped-types-2.1.0.tgz#b9b536b7c3571567aa1d0223db8baa1a51505a19" + integrity sha512-W+n+rM69XsFdwORF11UqJahn4J3xi4g/ZEOlJNL6KoW5ygWSmBB2p0S2BZ4FQeS/NDH72e6xIcu35SfJnE8bXw== + "@nestjs/platform-express@^11.0.1": version "11.1.16" resolved "https://registry.npmmirror.com/@nestjs/platform-express/-/platform-express-11.1.16.tgz#ce41bf3bef95f7c1a24e55be55e192108dda2f36" @@ -1007,6 +1017,18 @@ jsonc-parser "3.3.1" pluralize "8.0.0" +"@nestjs/swagger@^11.2.6": + version "11.2.6" + resolved "https://registry.npmmirror.com/@nestjs/swagger/-/swagger-11.2.6.tgz#c9f2689a932bd431f5e7f8c29e6a57309f4c92bc" + integrity sha512-oiXOxMQqDFyv1AKAqFzSo6JPvMEs4uA36Eyz/s2aloZLxUjcLfUMELSLSNQunr61xCPTpwEOShfmO7NIufKXdA== + dependencies: + "@microsoft/tsdoc" "0.16.0" + "@nestjs/mapped-types" "2.1.0" + js-yaml "4.1.1" + lodash "4.17.23" + path-to-regexp "8.3.0" + swagger-ui-dist "5.31.0" + "@nestjs/testing@^11.0.1": version "11.1.16" resolved "https://registry.npmmirror.com/@nestjs/testing/-/testing-11.1.16.tgz#c929e5f39ef60f69dc6acfb5bdc1cdcb28894461" @@ -1014,6 +1036,11 @@ dependencies: tslib "2.8.1" +"@nestjs/throttler@^6.5.0": + version "6.5.0" + resolved "https://registry.npmmirror.com/@nestjs/throttler/-/throttler-6.5.0.tgz#1ee550a258c4ae697d3978f2c8932adff927439e" + integrity sha512-9j0ZRfH0QE1qyrj9JjIRDz5gQLPqq9yVC2nHsrosDVAfI5HHw08/aUAWx9DZLSdQf4HDkmhTTEGLrRFHENvchQ== + "@nestjs/typeorm@^11.0.0": version "11.0.0" resolved "https://registry.npmmirror.com/@nestjs/typeorm/-/typeorm-11.0.0.tgz#b0f45d6902396db89e0ac1f4e738c2ff3407b794" @@ -1048,6 +1075,11 @@ resolved "https://registry.npmmirror.com/@pkgr/core/-/core-0.2.9.tgz#d229a7b7f9dac167a156992ef23c7f023653f53b" integrity sha512-QNqXyfVS2wm9hweSYD2O7F0G06uurj9kZ96TRQE5Y9hU7+tgdZwIkbAKc5Ocy1HxEY2kuDQa6cQ1WRs/O5LFKA== +"@scarf/scarf@=1.4.0": + version "1.4.0" + resolved "https://registry.npmmirror.com/@scarf/scarf/-/scarf-1.4.0.tgz#3bbb984085dbd6d982494538b523be1ce6562972" + integrity sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ== + "@sinclair/typebox@^0.34.0": version "0.34.48" resolved "https://registry.npmmirror.com/@sinclair/typebox/-/typebox-0.34.48.tgz#75b0ead87e59e1adbd6dccdc42bad4fddee73b59" @@ -2124,6 +2156,11 @@ cjs-module-lexer@^2.1.0: resolved "https://registry.npmmirror.com/cjs-module-lexer/-/cjs-module-lexer-2.2.0.tgz#b3ca5101843389259ade7d88c77bd06ce55849ca" integrity sha512-4bHTS2YuzUvtoLjdy+98ykbNB5jS0+07EvFNXerqZQJ89F7DI6ET7OQo/HJuW6K0aVsKA9hj9/RVb2kQVOrPDQ== +class-transformer@^0.5.1: + version "0.5.1" + resolved "https://registry.npmmirror.com/class-transformer/-/class-transformer-0.5.1.tgz#24147d5dffd2a6cea930a3250a677addf96ab336" + integrity sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw== + class-validator@^0.15.1: version "0.15.1" resolved "https://registry.npmmirror.com/class-validator/-/class-validator-0.15.1.tgz#002600c101bcebb16e7240870cb50535340c9600" @@ -2406,6 +2443,11 @@ dotenv@^16.4.5, dotenv@^16.6.1: resolved "https://registry.npmmirror.com/dotenv/-/dotenv-16.6.1.tgz#773f0e69527a8315c7285d5ee73c4459d20a8020" integrity sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow== +dotenv@^17.3.1: + version "17.3.1" + resolved "https://registry.npmmirror.com/dotenv/-/dotenv-17.3.1.tgz#2706f5b0165e45a1503348187b8468f87fe6aae2" + integrity sha512-IO8C/dzEb6O3F9/twg6ZLXz164a2fhTnEWb95H23Dm4OuN+92NmEAlTrupP9VW6Jm3sO26tQlqyvyi4CsnY9GA== + dunder-proto@^1.0.1: version "1.0.1" resolved "https://registry.npmmirror.com/dunder-proto/-/dunder-proto-1.0.1.tgz#d7ae667e1dc83482f8b70fd0f6eefc50da30f58a" @@ -3078,6 +3120,11 @@ hasown@^2.0.2: dependencies: function-bind "^1.1.2" +helmet@^8.1.0: + version "8.1.0" + resolved "https://registry.npmmirror.com/helmet/-/helmet-8.1.0.tgz#f96d23fedc89e9476ecb5198181009c804b8b38c" + integrity sha512-jOiHyAZsmnr8LqoPGmCjYAaiuWwjAPLgY8ZX2XrmHawt99/u1y6RgrZMTeoPfpUbV96HOalYgz1qzkRbw54Pmg== + html-escaper@^2.0.0: version "2.0.2" resolved "https://registry.npmmirror.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" @@ -3664,6 +3711,13 @@ js-tokens@^4.0.0: resolved "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== +js-yaml@4.1.1, js-yaml@^4.1.0, js-yaml@^4.1.1: + version "4.1.1" + resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" + integrity sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA== + dependencies: + argparse "^2.0.1" + js-yaml@^3.13.1: version "3.14.2" resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-3.14.2.tgz#77485ce1dd7f33c061fd1b16ecea23b55fcb04b0" @@ -3672,13 +3726,6 @@ js-yaml@^3.13.1: argparse "^1.0.7" esprima "^4.0.0" -js-yaml@^4.1.0, js-yaml@^4.1.1: - version "4.1.1" - resolved "https://registry.npmmirror.com/js-yaml/-/js-yaml-4.1.1.tgz#854c292467705b699476e1a2decc0c8a3458806b" - integrity sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA== - dependencies: - argparse "^2.0.1" - jsesc@^3.0.2: version "3.1.0" resolved "https://registry.npmmirror.com/jsesc/-/jsesc-3.1.0.tgz#74d335a234f67ed19907fdadfac7ccf9d409825d" @@ -4764,6 +4811,13 @@ supports-color@^8.0.0, supports-color@^8.1.1: dependencies: has-flag "^4.0.0" +swagger-ui-dist@5.31.0: + version "5.31.0" + resolved "https://registry.npmmirror.com/swagger-ui-dist/-/swagger-ui-dist-5.31.0.tgz#a2529f844c83b7e85c2caaf2c64a8277dd71db98" + integrity sha512-zSUTIck02fSga6rc0RZP3b7J7wgHXwLea8ZjgLA3Vgnb8QeOl3Wou2/j5QkzSGeoz6HusP/coYuJl33aQxQZpg== + dependencies: + "@scarf/scarf" "=1.4.0" + symbol-observable@4.0.0: version "4.0.0" resolved "https://registry.npmmirror.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205" @@ -4980,6 +5034,11 @@ typedarray@^0.0.6: resolved "https://registry.npmmirror.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== +typeorm-naming-strategies@^4.1.0: + version "4.1.0" + resolved "https://registry.npmmirror.com/typeorm-naming-strategies/-/typeorm-naming-strategies-4.1.0.tgz#1ec6eb296c8d7b69bb06764d5b9083ff80e814a9" + integrity sha512-vPekJXzZOTZrdDvTl1YoM+w+sUIfQHG4kZTpbFYoTsufyv9NIBRe4Q+PdzhEAFA2std3D9LZHEb1EjE9zhRpiQ== + typeorm@^0.3.28: version "0.3.28" resolved "https://registry.npmmirror.com/typeorm/-/typeorm-0.3.28.tgz#a3aabed8ef64287ee68da278d8ffa1d3c6c6b8ca"