-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.08 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.08 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
33
34
35
36
{
"name": "nodrix",
"private": true,
"version": "0.2.8",
"type": "module",
"workspaces": [
"worker",
"web",
"promo",
"shared/*"
],
"scripts": {
"dev": "bun run --filter @nodrix/worker dev",
"dev:web": "bun run --filter @nodrix/web dev",
"dev:promo": "bun run --filter @nodrix/promo dev",
"build:version": "bun scripts/gen-version.ts",
"build:migrations": "bun scripts/gen-migrations.ts",
"build": "bun run build:version && bun run build:migrations && bun run --filter @nodrix/web build && bun run --filter @nodrix/worker build",
"build:promo": "bun run --filter @nodrix/promo build",
"deploy:platform": "bun run build && bun run --filter @nodrix/worker deploy",
"deploy:promo": "bun run --filter @nodrix/promo deploy",
"typecheck": "bun run --filter '*' typecheck",
"smoke": "bun run worker/test/smoke.ts",
"postinstall": "bun run build:version"
},
"devDependencies": {
"typescript": "^5.6.3"
},
"overrides": {
"kysely": "^0.28.17"
},
"packageManager": "bun@1.1.40",
"cloudflare": {
"label": "nodrix"
}
}