mirror of
https://github.com/Sebclem/hassio-nextcloud-backup.git
synced 2024-11-05 09:02:58 +01:00
54 lines
1.7 KiB
JSON
54 lines
1.7 KiB
JSON
{
|
|
"name": "nexcloud-backup",
|
|
"version": "0.8.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsc -p .",
|
|
"debug": "pnpm run build && pnpm run watch-debug",
|
|
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
|
|
"serve-debug": "nodemon --inspect dist/server.js",
|
|
"serve": "node dist/server.js",
|
|
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"pnpm run watch-ts\" \"pnpm run serve-debug\"",
|
|
"watch-node": "nodemon dist/server.js",
|
|
"watch-ts": "tsc -w",
|
|
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"pnpm run watch-ts\" \"pnpm run watch-node\""
|
|
},
|
|
"dependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.38.0",
|
|
"app-root-path": "3.0.0",
|
|
"cookie-parser": "1.4.6",
|
|
"cron": "2.1.0",
|
|
"debug": "4.3.4",
|
|
"errorhandler": "^1.5.1",
|
|
"express": "4.18.1",
|
|
"form-data": "4.0.0",
|
|
"got": "12.3.0",
|
|
"http-errors": "2.0.0",
|
|
"jquery": "3.6.0",
|
|
"luxon": "3.0.1",
|
|
"morgan": "1.10.0",
|
|
"swagger-ui-express": "^4.5.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",
|
|
"@types/cron": "^2.0.0",
|
|
"@types/errorhandler": "^1.5.0",
|
|
"@types/express": "^4.17.14",
|
|
"@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",
|
|
"eslint": "7.19.0",
|
|
"nodemon": "^2.0.7",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.8.3"
|
|
}
|
|
}
|