27 lines
660 B
JSON
27 lines
660 B
JSON
{
|
|
"devDependencies": {
|
|
"@types/basic-auth": "^1.1.2",
|
|
"@types/express": "^4.17.1",
|
|
"@types/lru-cache": "^5.1.0",
|
|
"@types/node": "^12.7.7",
|
|
"@typescript-eslint/eslint-plugin": "^5.11.0",
|
|
"@typescript-eslint/parser": "^5.11.0",
|
|
"eslint": "^8.8.0",
|
|
"typescript": "^4.5.5"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run lint && npm run build:ts",
|
|
"build:ts": "tsc",
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
|
"start": "node build"
|
|
},
|
|
"dependencies": {
|
|
"basic-auth": "^2.0.1",
|
|
"express": "^4.17.1",
|
|
"lru-cache": "^5.1.1",
|
|
"node-fetch": "^3.2.0",
|
|
"timeout-signal": "^1.1.0"
|
|
},
|
|
"type": "module"
|
|
}
|