This repository has been archived on 2021-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ReRedirector/package.json

25 lines
608 B
JSON

{
"name": "url-redirector",
"version": "0.1.0",
"description": "用來代理常見縮網址服務,避免遭到北科的計網中心中間人攻擊。",
"scripts": {
"dev": "ts-node src/app.ts",
"build": "tsc",
"start": "node dist/app.js"
},
"author": "Pin Lin <moneycat711@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/express": "^4.17.3",
"@types/morgan": "^1.9.0",
"@types/node": "^12.12.31",
"axios": "^0.19.2",
"express": "^4.17.1",
"morgan": "^1.10.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"ts-node": "^8.8.1"
}
}