# products routes
router.use('/products', productsRoutes)
get /
post /create
put /:productID/update
delete /:productID/delete
# clients routes
router.use('/clients', clientsRoutes)
get /
post /create
put /:clientID/update
delete /:clientID/delete
# transactions routes
router.use('/transactions', transactionsRoutes)
get /
post /create
# admins routes
router.use('/admins', adminsRoutes)
post /login
post /create
# yarn
yarn
# npm
npm install
# pnpm
pnpm install
# yarn
yarn dev
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn build
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn lint
# npm
npm run lint
# pnpm
pnpm lint