-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 929 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "invoice-flow",
"private": true,
"scripts": {
"kill-ports": "kill-port 3000 3001 || true",
"dev": "pnpm kill-ports && docker compose up -d && wait-on tcp:localhost:5433 tcp:localhost:6379 && pnpm --filter backend migration:run && pnpm --filter backend seed && concurrently --names backend,frontend --prefix-colors blue,green --kill-others-on-fail \"pnpm --filter backend start:dev\" \"pnpm --filter @invoice-flow/frontend dev\"",
"infra:up": "docker compose up -d",
"infra:down": "docker compose down",
"infra:reset": "docker compose down -v && docker compose up -d",
"build": "pnpm --filter '*' build",
"lint": "pnpm --filter '*' lint",
"typecheck": "pnpm --filter '*' typecheck",
"test": "pnpm --filter '*' test",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^9.2.1",
"husky": "^9.1.7",
"kill-port": "^2.0.1",
"wait-on": "^9.0.4"
}
}