Inspired by Khalil Stemmler's Simple TypeScript Starter | 2020
- Minimal
- TypeScript v4
- Testing with Jest and Supertest
- Linting with Eslint and Prettier
- Pre-commit hooks with Husky
- Commit messages with git-cz
- VS Code debugger scripts
- Local development with Nodemon
Starts the application in development using nodemon
and ts-node
to do hot reloading.
Starts the app in production by first building the project with yarn run build
, and then executing the compiled JavaScript at build/index.js
.
Builds the app at build
, cleaning the folder first.
Runs the unit tests inside src
.
Runs the e2e tests inside e2e
.
Runs all test suites.
Format your code.
Lint your code.