-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.26 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.26 KB
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
29
30
31
32
{
"name": "mtg",
"packageManager": "bun@1.2.21",
"private": true,
"scripts": {
"dev": "bun run --cwd apps/web dev",
"build": "bun run --cwd apps/web build",
"preview": "bun run --cwd apps/web preview",
"test": "bun run --workspaces test",
"typecheck": "bun run --workspaces typecheck",
"deploy:web": "bun run --cwd apps/web deploy",
"deploy:web:staging": "bun run --cwd apps/web deploy:staging",
"cf:typegen": "bun run --workspaces cf:typegen",
"dev:server": "bun run --cwd apps/server dev",
"dev:discord": "bun run --cwd apps/discord dev",
"dev:all": "concurrently -k \"bun run dev\" \"bun run dev:server\"",
"deploy:server": "bun run --cwd apps/server deploy",
"deploy:server:staging": "bun run --cwd apps/server deploy:staging",
"deploy:staging": "bun run deploy:server:staging && bun run deploy:web:staging",
"deploy:discord": "bun run --cwd apps/discord deploy",
"register:discord:commands": "bun run --cwd apps/discord register:commands",
"register:discord:commands:global": "bun run --cwd apps/discord register:commands:global",
"test:discord:smoke": "bun run --cwd apps/discord test:smoke"
},
"devDependencies": {
"concurrently": "^9.1.2"
},
"workspaces": [
"apps/*",
"packages/*"
]
}