https://github.com/archellir/tax.arcbjorn.com
Tax calculation tool, built with Vue 3
https://github.com/archellir/tax.arcbjorn.com
cypress pinia pnpm typescript vite vitest vue
Last synced: 3 months ago
JSON representation
Tax calculation tool, built with Vue 3
- Host: GitHub
- URL: https://github.com/archellir/tax.arcbjorn.com
- Owner: archellir
- Created: 2022-10-09T03:27:04.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-02-17T21:32:10.000Z (over 1 year ago)
- Last Synced: 2025-03-18T08:16:52.830Z (over 1 year ago)
- Topics: cypress, pinia, pnpm, typescript, vite, vitest, vue
- Language: Vue
- Homepage: https://tax.arcbjorn.com
- Size: 664 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tax calculator
## Customize configuration
See [Vite Configuration Reference](https://vitejs.dev/config/).
## Project Setup
```sh
pnpm install
```
### Compile and Hot-Reload for Development
```sh
pnpm run dev
```
### Type-Check, Compile and Minify for Production
```sh
pnpm run build
```
### Run Unit Tests with [Vitest](https://vitest.dev/)
```sh
pnpm run test:unit
```
### Run End-to-End Tests with [Cypress](https://www.cypress.io/)
```sh
pnpm run build
pnpm run test:e2e # or `pnpm run test:e2e:ci` for headless testing
```
### Lint with [ESLint](https://eslint.org/)
```sh
pnpm run lint
```