feat: build initial pomodoro timer

This commit is contained in:
2026-07-22 22:38:17 +03:00
commit 128bdc5e16
22 changed files with 5058 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
{
"name": "pomodoro",
"version": "0.1.0",
"description": "A browser-based Pomodoro timer and clock",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"preview": "vite preview"
},
"keywords": [
"pomodoro",
"timer",
"react",
"productivity"
],
"dependencies": {
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.4",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
}
}