Budgeto is an app that help you count your expenses.
Make sure to install the dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun installStart the development server on http://localhost:5173:
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run devBuild the application for production:
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run buildLocally preview production build:
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run previewI used to keep code clean with Eslint and Prettier.
# npm
npm run lint
npm run format
# pnpm
pnpm lint
pnpm format
# yarn
yarn lint
yarn format
# bun
bun run lint
bun run formatBudgeto stack:
- Typescript - Programming Language
- Vue.js - JavaScript Library
- Shadcn-vue - UI Component Library
- Tailwindcss - CSS Framework
- Deployed with Vercel