fix dockerfile, add tracker tests

This commit is contained in:
iPromKnight
2024-02-08 14:52:14 +00:00
committed by iPromKnight
parent 2b1bb5fb16
commit 373ca4e024
5 changed files with 531 additions and 50 deletions

View File

@@ -6,7 +6,7 @@
"clean": "rm -rf dist",
"build": "node esbuild.js",
"dev": "tsx watch --ignore node_modules src/main.ts | pino-pretty",
"start": "node dist/main.cjs",
"start": "node --trace-deprecation dist/main.cjs",
"lint": "yarn eslint ./src --ext .ts,.js",
"lint-fix": "yarn run lint --fix",
"test": "jest",
@@ -21,7 +21,7 @@
"cache-manager": "^5.4.0",
"google-sr": "^3.2.1",
"inversify": "^6.0.2",
"magnet-uri": "^6.2.0",
"magnet-uri": "^7.0.5",
"moment": "^2.30.1",
"name-to-imdb": "^3.0.4",
"parse-torrent-title": "https://github.com/TheBeastLT/parse-torrent-title.git#022408972c2a040f846331a912a6a8487746a654",
@@ -38,6 +38,7 @@
"@types/jest": "^29.5.12",
"@types/magnet-uri": "^5.1.5",
"@types/node": "^20.11.16",
"@types/pg": "^8.11.0",
"@types/torrent-stream": "^0.0.9",
"@types/validator": "^13.11.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
@@ -47,12 +48,13 @@
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-import-helpers": "^1.3.1",
"jest": "^29.7.0",
"msw": "^2.1.7",
"node-gyp": "^10.0.1",
"pino-pretty": "^10.3.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"ts-jest": "^29.1.2"
"typescript": "^5.3.3"
}
}