-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 924 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "github-research",
"type": "module",
"private": true,
"packageManager": "bun@1.2.5",
"workspaces": [
"apps/*"
],
"scripts": {
"lint": "bun run --cwd apps/backend lint && bun run --cwd apps/frontend lint",
"dev": "bun run --cwd apps/shared build && bunx concurrently \"bun run --cwd apps/backend start:dev\" \"bun run --cwd apps/frontend dev\"",
"build": "bun run --cwd apps/shared build && bun run --cwd apps/backend build && bun run --cwd apps/frontend build",
"start": "bunx concurrently \"bun run --cwd apps/backend start:prod\" \"bun run --cwd apps/frontend preview\"",
"db:up": "docker-compose up -d",
"db:down": "docker-compose down",
"format": "bun run --cwd apps/backend format && bun run --cwd apps/frontend format"
},
"devDependencies": {
"@types/bun": "latest",
"concurrently": "^9.1.2"
},
"peerDependencies": {
"typescript": "^5"
}
}