1.0.0 • Published 2 years ago

@raja_rakoto/boost-eo v1.0.0

Weekly downloads
-
License
GPL-3.0
Repository
github
Last release
2 years ago

📌 Scripts

  • Starts the application in development using nodemon and ts-node to do hot reloading.
npm run start:dev

  • 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 start

  • Builds the app at build, cleaning the folder first.
npm run build

  • Runs the jest tests once.
npm run test

  • Run the jest tests in watch mode, waiting for file changes.
npm run test:watch

  • Format your code.
npm run prettier

  • Format your code in watch mode, waiting for file changes.
npm run prettier:watch

  • Check your project with eslint.
npm run check