Skip to content

Commit

Permalink
Add install & launch dev and prod scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeh committed May 16, 2024
1 parent d6520bb commit 3b1390b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@
"version": "1.0.0",
"description": "4-growth mono-repo",
"scripts": {
"start:api": "pnpm --filter api run start:dev",
"start:client": "pnpm --filter client run dev"
"start:api:dev": "pnpm --filter api run start:dev",
"start:client:dev": "pnpm --filter client run dev",
"install:client": "pnpm --filter client install",
"install:api": "pnpm --filter api install",
"build:client": "pnpm --filter client run build",
"build:api": "pnpm --filter api run build",
"start:client:prod": "pnpm --filter client run start",
"start:api:prod": "pnpm --filter api run start:prod",
"start:prod": "pnpm run build:client && pnpm run build:api && pnpm run start:client:prod & pnpm run start:api:prod"
}
}

0 comments on commit 3b1390b

Please sign in to comment.