mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 13:11:02 +00:00
chore(deps): update nest monorepo
This commit is contained in:
parent
a3c4d74763
commit
a3c6da2749
9 changed files with 1261 additions and 986 deletions
2196
package-lock.json
generated
2196
package-lock.json
generated
File diff suppressed because it is too large
Load diff
31
package.json
31
package.json
|
|
@ -27,17 +27,18 @@
|
|||
"dependencies": {
|
||||
"@digikare/nestjs-prom": "1.0.0",
|
||||
"@hapi/joi": "17.1.1",
|
||||
"@nestjs/common": "7.6.18",
|
||||
"@nestjs/config": "0.6.3",
|
||||
"@nestjs/core": "7.6.18",
|
||||
"@nestjs/jwt": "7.2.0",
|
||||
"@nestjs/passport": "7.1.6",
|
||||
"@nestjs/platform-express": "7.6.18",
|
||||
"@nestjs/schedule": "0.4.3",
|
||||
"@nestjs/axios": "^0.0.1",
|
||||
"@nestjs/common": "8.0.6",
|
||||
"@nestjs/config": "1.0.1",
|
||||
"@nestjs/core": "8.0.6",
|
||||
"@nestjs/jwt": "8.0.0",
|
||||
"@nestjs/passport": "8.0.1",
|
||||
"@nestjs/platform-express": "8.0.6",
|
||||
"@nestjs/schedule": "1.0.1",
|
||||
"@nestjs/serve-static": "2.2.2",
|
||||
"@nestjs/swagger": "4.8.2",
|
||||
"@nestjs/swagger": "5.0.9",
|
||||
"@nestjs/terminus": "7.2.0",
|
||||
"@nestjs/typeorm": "7.1.5",
|
||||
"@nestjs/typeorm": "8.0.2",
|
||||
"@sentry/node": "6.11.0",
|
||||
"class-transformer": "0.4.0",
|
||||
"class-validator": "0.13.1",
|
||||
|
|
@ -51,14 +52,14 @@
|
|||
"pg": "8.7.1",
|
||||
"reflect-metadata": "0.1.13",
|
||||
"rimraf": "3.0.2",
|
||||
"rxjs": "6.6.7",
|
||||
"rxjs": "7.3.0",
|
||||
"swagger-ui-express": "4.1.6",
|
||||
"typeorm": "0.2.36"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nestjs/cli": "7.6.0",
|
||||
"@nestjs/schematics": "7.3.1",
|
||||
"@nestjs/testing": "7.6.18",
|
||||
"@nestjs/cli": "8.1.1",
|
||||
"@nestjs/schematics": "8.0.2",
|
||||
"@nestjs/testing": "8.0.6",
|
||||
"@types/cookie-parser": "1.4.2",
|
||||
"@types/express": "4.17.13",
|
||||
"@types/hapi__joi": "17.1.7",
|
||||
|
|
@ -98,7 +99,9 @@
|
|||
"^.+\\.(t|j)s$": "ts-jest"
|
||||
},
|
||||
"coverageDirectory": "./coverage",
|
||||
"collectCoverageFrom": ["src/**/*.ts"],
|
||||
"collectCoverageFrom": [
|
||||
"src/**/*.ts"
|
||||
],
|
||||
"testEnvironment": "node",
|
||||
"roots": [
|
||||
"<rootDir>/src/"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { Injectable, Scope, Logger as NestLogger } from "@nestjs/common";
|
||||
import { Injectable, Scope, ConsoleLogger } from "@nestjs/common";
|
||||
|
||||
@Injectable({ scope: Scope.TRANSIENT })
|
||||
export class Logger extends NestLogger {}
|
||||
export class Logger extends ConsoleLogger {}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { HttpModule, Module } from "@nestjs/common";
|
||||
import { HttpModule } from "@nestjs/axios";
|
||||
import { Module } from "@nestjs/common";
|
||||
import { ConfigService } from "@nestjs/config";
|
||||
import { SpotifyApiService } from "./spotify-api.service";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { HttpService } from "@nestjs/common";
|
||||
import { HttpService } from "@nestjs/axios";
|
||||
import { Test, TestingModule } from "@nestjs/testing";
|
||||
import { SpotifyApiService } from "./spotify-api.service";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { HttpService, Injectable } from "@nestjs/common";
|
||||
import { HttpService } from "@nestjs/axios";
|
||||
import { Injectable } from "@nestjs/common";
|
||||
import { SpotifyConnection } from "../spotify-connection.entity";
|
||||
import { AlbumObject } from "./entities/album-object";
|
||||
import { ArtistObject } from "./entities/artist-object";
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { HttpModule, Module } from "@nestjs/common";
|
||||
import { HttpModule } from "@nestjs/axios";
|
||||
import { Module } from "@nestjs/common";
|
||||
import { ConfigService } from "@nestjs/config";
|
||||
import { SpotifyAuthService } from "./spotify-auth.service";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
import { HttpService, Injectable } from "@nestjs/common";
|
||||
import { HttpService } from "@nestjs/axios";
|
||||
import { Injectable } from "@nestjs/common";
|
||||
import { ConfigService } from "@nestjs/config";
|
||||
import { SpotifyConnection } from "../spotify-connection.entity";
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import { Logger } from "@nestjs/common";
|
||||
import { Test, TestingModule } from "@nestjs/testing";
|
||||
import { ListensService } from "../../listens/listens.service";
|
||||
import { Logger } from "../../logger/logger.service";
|
||||
import { MusicLibraryService } from "../../music-library/music-library.service";
|
||||
import { UsersService } from "../../users/users.service";
|
||||
import { SpotifyApiService } from "./spotify-api/spotify-api.service";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue