-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1011 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 1011 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
26
27
28
{
"name": "@bx-team/monorepo",
"private": true,
"scripts": {
"atlas:dev": "bun --filter @bx-team/atlas dev",
"atlas:deploy": "bun --filter @bx-team/atlas deploy",
"atlas:db:generate": "bun --filter @bx-team/atlas db:generate",
"atlas:db:migrate": "bun --filter @bx-team/atlas db:migrate",
"atlas:db:push": "bun --filter @bx-team/atlas db:push",
"atlas:db:studio": "bun --filter @bx-team/atlas db:studio",
"website:dev": "bun --filter @bx-team/website dev",
"website:build": "bun --filter @bx-team/website build",
"website:start": "bun --filter @bx-team/website start",
"biome:format": "biome format .",
"biome:format:fix": "biome format --write .",
"biome:check": "biome check .",
"biome:check:fix": "biome check --write .",
"postinstall": "bun --filter '*' postinstall",
"preinstall": "bun x only-allow bun"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11"
},
"workspaces": [
"apps/*"
],
"packageManager": "bun@1.3.12"
}