2022-09-21 17:24:02 +02:00
|
|
|
{
|
|
|
|
"name": "nexcloud-backup",
|
|
|
|
"version": "0.8.0",
|
|
|
|
"private": true,
|
|
|
|
"type": "module",
|
|
|
|
"scripts": {
|
2022-09-27 23:38:40 +02:00
|
|
|
"build:watch": "tsc -w",
|
|
|
|
"build": "tsc --build --verbose",
|
|
|
|
"dev": "pnpm build && concurrently -n tsc,node \"pnpm build:watch\" \"pnpm serve:watch\"",
|
2022-09-21 17:24:02 +02:00
|
|
|
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
|
2022-09-27 23:38:40 +02:00
|
|
|
"serve:watch": "nodemon dist/server.js",
|
|
|
|
"serve": "node dist/server.js"
|
2022-09-21 17:24:02 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.38.0",
|
|
|
|
"app-root-path": "3.0.0",
|
|
|
|
"cookie-parser": "1.4.6",
|
2022-10-13 17:11:55 +02:00
|
|
|
"cors": "^2.8.5",
|
2022-09-21 17:24:02 +02:00
|
|
|
"cron": "2.1.0",
|
|
|
|
"debug": "4.3.4",
|
|
|
|
"errorhandler": "^1.5.1",
|
|
|
|
"express": "4.18.1",
|
2022-09-30 23:52:27 +02:00
|
|
|
"fast-xml-parser": "^4.0.10",
|
2022-09-27 23:38:40 +02:00
|
|
|
"figlet": "^1.5.2",
|
2022-09-21 17:24:02 +02:00
|
|
|
"form-data": "4.0.0",
|
|
|
|
"got": "12.3.0",
|
|
|
|
"http-errors": "2.0.0",
|
2022-09-29 00:05:53 +02:00
|
|
|
"joi": "^17.6.1",
|
2022-09-21 17:24:02 +02:00
|
|
|
"jquery": "3.6.0",
|
2022-09-27 23:38:40 +02:00
|
|
|
"kleur": "^4.1.5",
|
2022-09-21 17:24:02 +02:00
|
|
|
"luxon": "3.0.1",
|
|
|
|
"morgan": "1.10.0",
|
|
|
|
"webdav": "4.10.0",
|
|
|
|
"winston": "3.8.1"
|
|
|
|
},
|
|
|
|
"packageManager": "pnpm@7.12.1",
|
|
|
|
"devDependencies": {
|
|
|
|
"@tsconfig/recommended": "^1.0.1",
|
|
|
|
"@types/cookie-parser": "^1.4.3",
|
2022-10-13 17:11:55 +02:00
|
|
|
"@types/cors": "^2.8.12",
|
2022-09-21 17:24:02 +02:00
|
|
|
"@types/cron": "^2.0.0",
|
|
|
|
"@types/errorhandler": "^1.5.0",
|
|
|
|
"@types/express": "^4.17.14",
|
2022-09-27 23:38:40 +02:00
|
|
|
"@types/figlet": "^1.5.5",
|
2022-09-21 17:24:02 +02:00
|
|
|
"@types/http-errors": "^1.8.2",
|
|
|
|
"@types/luxon": "^3.0.1",
|
|
|
|
"@types/morgan": "^1.9.3",
|
|
|
|
"@types/node": "^18.7.18",
|
|
|
|
"@typescript-eslint/parser": "^5.38.0",
|
|
|
|
"concurrently": "6.0.2",
|
2022-09-27 23:38:40 +02:00
|
|
|
"dotenv": "^16.0.2",
|
2022-09-21 17:24:02 +02:00
|
|
|
"eslint": "7.19.0",
|
2022-09-27 23:38:40 +02:00
|
|
|
"nodemon": "^2.0.20",
|
2022-09-21 17:24:02 +02:00
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
"typescript": "^4.8.3"
|
|
|
|
}
|
|
|
|
}
|