-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.15 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.15 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
{
"name": "docdeploy",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"dev:app": "turbo dev --filter=@docdeploy/app",
"dev:web": "turbo dev --filter=@docdeploy/web",
"dev:docs": "turbo dev --filter=@docdeploy/docs",
"build:app": "turbo build --filter=@docdeploy/app",
"build:web": "turbo build --filter=@docdeploy/web",
"build:docs": "turbo build --filter=@docdeploy/docs",
"worker": "npm run worker --workspace=@docdeploy/app",
"mcp": "npm run mcp --workspace=@docdeploy/app",
"db:push": "npm run db:push --workspace=@docdeploy/db",
"db:migrate": "npm run db:migrate --workspace=@docdeploy/db",
"neon": "neonctl",
"x402-api": "npm run start --workspace=@docdeploy/x402-api",
"render:blueprint": "render blueprints validate render.yaml -o text --confirm",
"render:services": "render services -o text --confirm",
"render:deploy:docdeploy": "node scripts/render-deploy-docdeploy.mjs"
},
"devDependencies": {
"neonctl": "^2.22.0",
"turbo": "^2"
},
"packageManager": "npm@10.0.0"
}