Skip to content

Commit 6145f04

Browse files
authored
Merge pull request #71 from Open-Webtoon-Reader/staging
Merge Staging to Main
2 parents 0c9b7a6 + 7eca05e commit 6145f04

21 files changed

+1850
-1026
lines changed

.env.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# API
22
PREFIX="api/v1/"
3+
DATABASE_URL=
34

45
# Security
56
ADMIN_KEY="admin"
@@ -17,3 +18,7 @@ S3_STORAGE_CLASS=STANDARD
1718

1819
# Migration
1920
S3_BATCH_SIZE=20
21+
22+
# Parsers
23+
IGNORED_LANGUAGES=#separated by comma (;)
24+
WEBTOON_CANVAS_MAX_PAGES=#max parsed pages for webtoon canvas

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default [
3636
"error",
3737
{
3838
caughtErrorsIgnorePattern: "^_",
39-
argsIgnorePattern: "^_|Service$",
39+
argsIgnorePattern: "^_|Service$|Provider$",
4040
},
4141
],
4242
"@stylistic/brace-style": [

package.json

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -13,47 +13,47 @@
1313
"lint": "eslint . --fix"
1414
},
1515
"dependencies": {
16-
"@fastify/helmet": "^11.1.1",
17-
"@fastify/static": "^7.0.4",
18-
"@nestjs/common": "^10.4.15",
19-
"@nestjs/config": "^3.3.0",
20-
"@nestjs/core": "^10.4.15",
21-
"@nestjs/platform-fastify": "^10.4.15",
22-
"@nestjs/platform-socket.io": "^10.4.15",
23-
"@nestjs/schedule": "^4.1.2",
24-
"@nestjs/swagger": "^8.1.0",
25-
"@nestjs/throttler": "^6.3.0",
26-
"@nestjs/websockets": "^10.4.15",
27-
"@prisma/client": "6.1.0",
28-
"axios": "^1.7.9",
16+
"@fastify/helmet": "^13.0.1",
17+
"@fastify/static": "^8.1.1",
18+
"@nestjs/common": "^11.0.12",
19+
"@nestjs/config": "^4.0.1",
20+
"@nestjs/core": "^11.0.12",
21+
"@nestjs/platform-fastify": "^11.0.12",
22+
"@nestjs/platform-socket.io": "^11.0.12",
23+
"@nestjs/schedule": "^5.0.1",
24+
"@nestjs/swagger": "^11.0.7",
25+
"@nestjs/throttler": "^6.4.0",
26+
"@nestjs/websockets": "^11.0.12",
27+
"@prisma/client": "6.5.0",
28+
"axios": "^1.8.4",
2929
"class-transformer": "^0.5.1",
3030
"class-validator": "^0.14.1",
3131
"dotenv": "^16.4.7",
32-
"fastify": "4.29.0",
33-
"jsdom": "^25.0.1",
32+
"fastify": "5.2.1",
33+
"jsdom": "^26.0.0",
3434
"jszip": "^3.10.1",
35-
"minio": "^8.0.3",
35+
"minio": "^8.0.5",
3636
"reflect-metadata": "^0.2.2",
37-
"rxjs": "^7.8.1",
37+
"rxjs": "^7.8.2",
3838
"sharp": "^0.33.5",
3939
"socket.io": "^4.8.1",
4040
"swagger-themes": "^1.4.3"
4141
},
4242
"devDependencies": {
43-
"@nestjs/cli": "^10.4.9",
44-
"@nestjs/schematics": "^10.2.3",
45-
"@nestjs/testing": "^10.4.15",
46-
"@stylistic/eslint-plugin": "^2.12.1",
43+
"@nestjs/cli": "^11.0.5",
44+
"@nestjs/schematics": "^11.0.2",
45+
"@nestjs/testing": "^11.0.12",
46+
"@stylistic/eslint-plugin": "^4.2.0",
4747
"@types/jsdom": "^21.1.7",
48-
"@types/node": "^22.10.2",
49-
"@typescript-eslint/parser": "^8.18.1",
50-
"eslint": "^9.17.0",
51-
"prisma": "^6.1.0",
48+
"@types/node": "^22.13.10",
49+
"@typescript-eslint/parser": "^8.27.0",
50+
"eslint": "^9.22.0",
51+
"prisma": "^6.5.0",
5252
"source-map-support": "^0.5.21",
53-
"ts-loader": "^9.5.1",
53+
"ts-loader": "^9.5.2",
5454
"ts-node": "^10.9.2",
5555
"tsconfig-paths": "^4.2.0",
56-
"typescript": "^5.7.2"
56+
"typescript": "^5.8.2"
5757
},
5858
"prisma": {
5959
"seed": "ts-node prisma/seed.ts"

0 commit comments

Comments
 (0)