-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 831 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "bookstudio",
"private": true,
"scripts": {
"dev": "concurrently -n api,web -c blue,green \"cd apps/api && ./mvnw spring-boot:run\" \"cd apps/web && pnpm dev\"",
"dev:web": "cd apps/web && pnpm dev",
"dev:api": "cd apps/api && ./mvnw spring-boot:run",
"web:build": "cd apps/web && pnpm build",
"web:lint": "cd apps/web && pnpm check:lint",
"web:lint:fix": "cd apps/web && pnpm lint:fix",
"web:format": "cd apps/web && pnpm format",
"docker:up": "docker compose up",
"docker:down": "docker compose down",
"docker:up:prod": "docker compose -f docker-compose.yml -f docker-compose.prod.yml up --build",
"docker:down:prod": "docker compose -f docker-compose.yml -f docker-compose.prod.yml down --remove-orphans"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}