fix tz in today transaction on coin page (#16)

This commit is contained in:
Doh
2025-01-04 12:02:05 -05:00
committed by GitHub
parent ad05a46206
commit 9c89132cf1
8 changed files with 104 additions and 39 deletions

View File

@@ -7,8 +7,12 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "bun test",
"typecheck": "tsc --noEmit",
"docker-build": "docker build -t habittrove .",
"docker-run": "docker run -p 3000:3000 -v $(pwd)/data:/app/data habittrove"
"docker-run": "docker run -p 3000:3000 -v $(pwd)/data:/app/data habittrove",
"prepare": "husky",
"setup:dev": "if ! command -v bun > /dev/null; then echo 'Installing bun...'; curl -fsSL https://bun.sh/install | bash; fi && npm install --force && npm run typecheck && npm run lint"
},
"dependencies": {
"@next/font": "^14.2.15",
@@ -52,6 +56,7 @@
"eslint": "^9",
"eslint-config-next": "15.1.3",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"postcss": "^8",
"raw-loader": "^4.0.2",
"tailwindcss": "^3.4.1",