hassio-nextcloud-backup/nextcloud_backup/backend/package.json

57 lines
1.5 KiB
JSON
Raw Normal View History

{
"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\"",
2024-07-11 15:47:27 +02:00
"lint": "tsc --noEmit && eslint --quiet --fix",
2022-09-27 23:38:40 +02:00
"serve:watch": "nodemon dist/server.js",
"serve": "node dist/server.js"
},
"dependencies": {
2024-02-18 17:19:37 +01:00
"app-root-path": "3.1.0",
"cookie-parser": "1.4.6",
"cors": "^2.8.5",
2024-08-09 17:08:20 +02:00
"cron": "3.1.7",
"debug": "4.3.4",
"errorhandler": "^1.5.1",
2024-02-18 17:19:37 +01:00
"express": "4.18.2",
"fast-xml-parser": "^4.3.4",
"figlet": "^1.7.0",
"form-data": "4.0.0",
2024-02-18 17:19:37 +01:00
"got": "14.2.0",
"http-errors": "2.0.0",
2024-02-18 17:19:37 +01:00
"joi": "^17.12.1",
"jquery": "3.7.1",
2022-09-27 23:38:40 +02:00
"kleur": "^4.1.5",
2024-02-18 17:19:37 +01:00
"luxon": "3.4.4",
"morgan": "1.10.0",
2024-02-18 17:19:37 +01:00
"webdav": "5.3.2",
"winston": "3.11.0"
},
2024-02-18 17:19:37 +01:00
"packageManager": "pnpm@8.15.3",
"devDependencies": {
2024-07-11 15:47:27 +02:00
"@eslint/js": "^9.6.0",
2024-02-18 17:19:37 +01:00
"@tsconfig/recommended": "^1.0.3",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/errorhandler": "^1.5.3",
2024-07-11 15:47:27 +02:00
"@types/eslint__js": "^8.42.3",
2024-02-18 17:19:37 +01:00
"@types/express": "^4.17.21",
"@types/figlet": "^1.5.8",
"@types/http-errors": "^2.0.4",
"@types/luxon": "^3.4.2",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.19",
"concurrently": "8.2.2",
"dotenv": "^16.4.4",
2024-07-11 15:47:27 +02:00
"eslint": "^9.6.0",
2024-02-18 17:19:37 +01:00
"nodemon": "^3.0.3",
"ts-node": "^10.9.2",
2024-07-11 15:47:27 +02:00
"typescript": "^5.3.3",
"typescript-eslint": "8.0.0-alpha.41"
}
2024-07-11 15:47:27 +02:00
}