mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-05 09:02:58 +01:00
58 lines
1.6 KiB
JSON
58 lines
1.6 KiB
JSON
{
|
|
"name": "nexcloud-backup",
|
|
"version": "0.8.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build:watch": "tsc -w",
|
|
"build": "tsc --build --verbose",
|
|
"dev": "pnpm build && concurrently -n tsc,node \"pnpm build:watch\" \"pnpm serve:watch\"",
|
|
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
|
|
"serve:watch": "nodemon dist/server.js",
|
|
"serve": "node dist/server.js"
|
|
},
|
|
"dependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^7.0.1",
|
|
"app-root-path": "3.1.0",
|
|
"cookie-parser": "1.4.6",
|
|
"cors": "^2.8.5",
|
|
"cron": "3.1.6",
|
|
"debug": "4.3.4",
|
|
"errorhandler": "^1.5.1",
|
|
"express": "4.18.2",
|
|
"fast-xml-parser": "^4.3.4",
|
|
"figlet": "^1.7.0",
|
|
"form-data": "4.0.0",
|
|
"got": "14.2.0",
|
|
"http-errors": "2.0.0",
|
|
"joi": "^17.12.1",
|
|
"jquery": "3.7.1",
|
|
"kleur": "^4.1.5",
|
|
"luxon": "3.4.4",
|
|
"morgan": "1.10.0",
|
|
"webdav": "5.3.2",
|
|
"winston": "3.11.0"
|
|
},
|
|
"packageManager": "pnpm@8.15.3",
|
|
"devDependencies": {
|
|
"@tsconfig/recommended": "^1.0.3",
|
|
"@types/cookie-parser": "^1.4.6",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/cron": "^2.4.0",
|
|
"@types/errorhandler": "^1.5.3",
|
|
"@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",
|
|
"@typescript-eslint/parser": "^7.0.1",
|
|
"concurrently": "8.2.2",
|
|
"dotenv": "^16.4.4",
|
|
"eslint": "8.56.0",
|
|
"nodemon": "^3.0.3",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|