-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.07 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "time-trackly",
"version": "2.0.0",
"description": "TimeTrackly - Your time, your data. A simple, private, and offline-first time tracker with local file persistence.",
"main": "server.cjs",
"type": "module",
"scripts": {
"start": "node server.cjs",
"dev": "NODE_ENV=development node server.cjs",
"health": "curl -s http://localhost:13331/api/health | json_pp || curl -s http://localhost:13331/api/health",
"backup": "mkdir -p backups && cp mtt-*.json backups/backup-$(date +%Y%m%d-%H%M%S)/ 2>/dev/null || true",
"test": "npm run test:unit && npm run test:api && npm run test:e2e",
"test:unit": "node --test tests/unit/test-*.mjs",
"test:e2e": "node tests/e2e/test-ui-complete.cjs",
"test:api": "node tests/e2e/test-backend-api.cjs",
"test:headless": "HEADLESS=true node tests/e2e/test-ui-complete.cjs",
"test:watch": "node --test --watch tests/unit/test-*.mjs"
},
"keywords": [
"time-tracker",
"productivity",
"local-first",
"timer"
],
"author": "",
"license": "ISC",
"devDependencies": {
"jsdom": "^27.1.0",
"puppeteer": "^24.27.0"
}
}