-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 1.37 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
{
"name": "pyro",
"version": "0.2.1",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build:packages": "npm run build -w @pyro/contracts && npm run build -w @pyro/storage && npm run build -w @pyro/integrations && npm run build -w @pyro/queue && npm run build -w @pyro/classifiers && npm run build -w @pyro/sdk",
"build": "npm run build:packages && npm run build -w @pyro/gateway && npm run build -w @pyro/control-plane && npm run build -w @pyro/dashboard",
"check": "npm run typecheck && npm test && npm run build",
"dev": "concurrently -n gateway,control,dashboard -c blue,magenta,green \"npm run dev -w @pyro/gateway\" \"npm run dev -w @pyro/control-plane\" \"npm run dev -w @pyro/dashboard\"",
"test": "npm run test -w @pyro/storage && npm run test -w @pyro/integrations && npm run test -w @pyro/queue && npm run test -w @pyro/classifiers && npm run test -w @pyro/sdk && npm run test -w @pyro/gateway && npm run test -w @pyro/control-plane && npm run test -w @pyro/dashboard",
"typecheck": "npm run build:packages && npm run typecheck --workspaces --if-present",
"webhook:receiver": "node scripts/webhook-receiver.mjs",
"test:webhook": "node scripts/test-webhook.mjs"
},
"devDependencies": {
"concurrently": "^9.2.1",
"typescript": "^7.0.2"
},
"engines": {
"node": ">=22.0.0"
}
}