add npm start command

This commit is contained in:
2026-04-13 20:00:38 +02:00
parent 0cd325d92a
commit bb2b5a6e7f
3 changed files with 2 additions and 2 deletions
Binary file not shown.
+1 -1
View File
@@ -50,7 +50,7 @@ async function runExport() {
console.log('✅ Login erfolgreich.'); console.log('✅ Login erfolgreich.');
// --- DATEN EXTRAKTION --- // --- DATEN EXTRAKTION ---
const months = []; const months = [];
let current = dayjs(config.startDate); let current = dayjs(config.startDate);
const end = dayjs(config.endDate); const end = dayjs(config.endDate);
while (current.isBefore(end) || current.isSame(end)) { while (current.isBefore(end) || current.isSame(end)) {
+1 -1
View File
@@ -20,7 +20,7 @@
"type": "commonjs", "type": "commonjs",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "start": "node index.js"
}, },
"dependencies": { "dependencies": {
"axios": "^1.15.0", "axios": "^1.15.0",