/simple-tax-calculator

command-line version of the official Australian Tax calculator

Primary LanguageJavaScript

🧰 simple tax calculator

A simpler, command-line version of the official Australian Tax calculator website found at: ato.gov.au.

Inputs

Select an income year: 2021-22
Enter your total taxable income for the full income year: 98000
Select your residency status: Resident

Total tax: $22,317

Simple tax calculator

Scripts

npm run start:dev

Starts the application in development using nodemon and ts-node to do hot reloading.

npm run start

Starts the app in production by first building the project with npm run build, and then executing the compiled JavaScript at build/index.js.

npm run build

Builds the app at build, cleaning the folder first.

npm run test

Runs the jest tests once.

npm run test:dev

Run the jest tests in watch mode, waiting for file changes.

npm run prettier-format

Format your code.

npm run prettier-watch

Format your code in watch mode, waiting for file changes.