mirror of
https://github.com/arthur-pbty/pomodoro.git
synced 2026-06-03 23:36:20 +02:00
b933c6040c
feat: add useAmbientSound hook for ambient sound management feat: create useLocalStorage hook for persistent state management feat: develop useTheme hook for theme switching functionality feat: implement useTimer hook for Pomodoro timer logic feat: create useTodos hook for managing todo list functionality style: add global styles and custom scrollbar for better UI experience chore: set up main entry point for the application feat: define types for Timer, Todo, and Statistics feat: create utility function for class name merging chore: configure Tailwind CSS for styling chore: set up TypeScript configuration for the project chore: configure Vite for development and build process
30 lines
660 B
JSON
30 lines
660 B
JSON
{
|
|
"name": "react-vite-tailwind",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "2.1.1",
|
|
"lucide-react": "^0.563.0",
|
|
"react": "19.2.3",
|
|
"react-dom": "19.2.3",
|
|
"tailwind-merge": "3.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "4.1.17",
|
|
"@types/node": "^22.0.0",
|
|
"@types/react": "19.2.7",
|
|
"@types/react-dom": "19.2.3",
|
|
"@vitejs/plugin-react": "5.1.1",
|
|
"tailwindcss": "4.1.17",
|
|
"typescript": "5.9.3",
|
|
"vite": "7.2.4",
|
|
"vite-plugin-singlefile": "2.3.0"
|
|
}
|
|
}
|