-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 892 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "factorize-workspace",
"version": "0.1.0",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"dev": "npm run dev --workspace=factorize",
"dev:marketing": "npm run dev --workspace=factorize-marketing",
"build:marketing": "npm run build:marketing --workspace=factorize-marketing",
"build:css": "npm run build:css --workspace=factorize",
"test": "npm run test --workspaces --if-present",
"check": "npm run check --workspace=factorize && npm run check --workspace=factorize-marketing && npm run check --workspace=factorize-tail-relay",
"deploy": "npm run deploy:marketing && npm run deploy:app && npm run deploy:tail-relay",
"deploy:marketing": "npm run deploy --workspace=factorize-marketing",
"deploy:app": "npm run deploy --workspace=factorize",
"deploy:tail-relay": "npm run deploy --workspace=factorize-tail-relay"
}
}