A dead simple time tracker that keeps everything in local storage. Next.js, no accounts and no server.
handcodedlocalstoragenextjsreactself-hostedserverlesstime-trackingtimer
1{
2 "private": true,
3 "scripts": {
4 "start": "bun --bun next --port 8000",
5 "next:start": "bun --bun next start --port 8000",
6 "next:build": "bun --bun next build"
7 },
8 "dependencies": {
9 "chart.js": "^4.5.1",
10 "localforage": "^1.9.0",
11 "next": "^16.2.11",
12 "prop-types": "^15.8.1",
13 "react": "^19.2.4",
14 "react-csv": "^2.0.3",
15 "react-dom": "^19.2.4",
16 "react-hook-form": "^7.71.2",
17 "react-hotkeys": "^2.0.0",
18 "react-localization": "^2.0.6",
19 "react-toastify": "^11.0.5",
20 "react-transition-group": "^4.2.1"
21 }
22}