-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
19 lines (19 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "mpm",
"private": true,
"packageManager": "pnpm@10.4.0",
"scripts": {
"dev:api": "pnpm --filter @mpm/api dev",
"dev:web": "pnpm --filter @mpm/web dev",
"radar:run": "pnpm --filter @mpm/api radar:run",
"radar:sync-d1": "pnpm --filter @mpm/api radar:sync-d1",
"build": "pnpm --filter @mpm/contracts build && pnpm --filter @mpm/api build && pnpm --filter @mpm/web build",
"test": "pnpm --filter @mpm/api test",
"build:cf": "pnpm --filter @mpm/contracts build && pnpm --filter @mpm/web build && pnpm --filter @mpm/worker typecheck",
"dev:cf": "pnpm --filter @mpm/worker dev",
"deploy:cf": "pnpm build:cf && pnpm --filter @mpm/worker exec wrangler d1 migrations apply mpm-production --remote && pnpm --filter @mpm/worker run deploy"
},
"devDependencies": {
"typescript": "^5.7.3"
}
}