-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 836 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 836 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
29
{
"name": "server-driven-ui",
"version": "1.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"db:seed": "npm run db:seed -w @sdui/api",
"build:render": "npm run build -w @sdui/shared && npm run build -w @sdui/web && npm run build -w @sdui/api",
"start:render": "npm run db:seed:prod -w @sdui/api && SERVE_STATIC=true NODE_ENV=production npm run start -w @sdui/api",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"engines": {
"node": "20.x"
},
"packageManager": "npm@10.9.0"
}