-
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) · 943 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 943 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": "process-engineering-suite",
"private": true,
"scripts": {
"build": "bun turbo run build",
"dev": "bun turbo run dev --parallel",
"lint": "bun turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "bun turbo run check-types",
"check:deploy:vercel": "DEPLOY_TARGET=vercel VERCEL=1 bun turbo run build --filter=web --filter=network-editor --filter=psv --filter=docs",
"check:deploy:aws": "DEPLOY_TARGET=aws bun turbo run build --filter=web --filter=network-editor --filter=psv --filter=docs",
"check:deploy:matrix": "bun run check:deploy:vercel && bun run check:deploy:aws",
"gen-types": "bun --filter @eng-suite/types generate"
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.6.3",
"typescript": "5.9.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "bun@1.3.5",
"workspaces": [
"apps/*",
"packages/*"
]
}