-
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) · 974 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 974 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": "flagship",
"private": true,
"version": "0.0.0",
"description": "Progressive delivery and experimentation platform",
"workspaces": [
"packages/*",
"apps/console",
"apps/control-plane"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"conformance": "npm run conformance --workspace packages/sdk-js",
"fixture:generate": "npm run fixture:generate --workspace packages/core",
"bench": "npm run bench --workspace packages/sdk-js",
"infra:up": "docker compose -f infra/docker-compose.yml up -d",
"infra:down": "docker compose -f infra/docker-compose.yml down",
"aa:simulate": "npm run aa:simulate --workspace packages/core"
},
"devDependencies": {
"typescript": "^5.7.2"
}
}