npm run lint
– lint filesnpm run test:unit
– run unit testsnpm run test:integration
– run integration testsnpm run test:coverage
– run all tests and get coverage reportnpm test
– run lint and all the test with coverage report
npm start
– setup the database and start the servernpm run dev
– start the server with automatic restart if changes been madenpm run pm2
– start the server with pm2 and optimized conditions
npm run db:migrate
– execute all database migrationsnpm run db:seed
– execute all database seedsnpm run db:start
– start the databasenpm run db
– start the database and executes migrations/seeds