Course material for the Introduction to Monorepos with NPM Workspaces course on Egghead.io - Course link
npm run dev # run all the 3 development servers
npm run check # run all quality checks
npm run dev:utils # run the dev server for the utils package
npm run dev:blog # run the dev server for the blog package
npm run dev:dashboard # run the dev server for the dashboard package
npm run test:utils # run the tests for the utils package
npm run test:blog # run the tests for the blog package
npm run test:dashboard # run the tests for the dashboard package
npm run typecheck:utils # run the typechecker for the utils package
npm run typecheck:blog # run the typechecker for the blog package
npm run typecheck:dashboard # run the typechecker for the dashboard package