This commit is contained in:
Fasterino
2024-11-15 02:24:51 +03:00
commit 93e89b0d7f
13 changed files with 1511 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "proxy",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "tsc && node dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/http-proxy": "^1.17.13",
"cors": "^2.8.5",
"express": "^4.18.2",
"http-proxy": "^1.18.1"
},
"devDependencies": {
"@types/express": "^4.17.20",
"typescript": "^5.2.2"
}
}