Skip to content

Commit

Permalink
chore: improve npm start
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcrt committed Mar 23, 2024
1 parent 5b6791f commit 583634e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "1.0.0",
"private": "true",
"scripts": {
"start": "npm run migrate:db && concurrently --kill-others -n frontend,backend,radar \"npm run start:frontend\" \"npm run start:backend\" \"npm run start:radar\"",
"start:frontend": "npm -w packages/frontend run start",
"start:backend": "npm -w packages/backend run start",
"start:radar": "npm -w packages/backend run start:radar",
"start": "npm run migrate:db && npm run start:frontend && npm run start:backend && npm run start:radar",
"start:frontend": "npm -w packages/frontend run start | sed 's/^/[frontend] /'",
"start:backend": "npm -w packages/backend run start | sed 's/^/[backend] /'",
"start:radar": "npm -w packages/backend run start:radar | sed 's/^/[radar] /'",
"build:frontend": "npm -w packages/frontend run build",
"migrate:db": "npm -w packages/backend run migrate:db",
"dev": "concurrently \"npm run dev:frontend\" \"npm run dev:backend\"",
Expand Down

0 comments on commit 583634e

Please sign in to comment.