-
-
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) · 777 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "astro-bundle-budget-workspace",
"private": true,
"workspaces": [
"demo",
"packages/*"
],
"scripts": {
"build:bundle-budget": "npm run build --workspace=packages/astro-bundle-budget",
"build:env-inspector": "npm run build --workspace=packages/astro-env-inspector",
"build:toolbar-routes": "npm run build --workspace=packages/astro-toolbar-routes",
"build:i18n-toolkit": "npm run build --workspace=packages/astro-i18n-toolkit",
"build:all": "npm run build:bundle-budget && npm run build:env-inspector && npm run build:toolbar-routes && npm run build:i18n-toolkit",
"dev:demo": "npm run dev --workspace=demo",
"build:demo": "npm run build --workspace=demo",
"test:demo": "npm run build:all && npm run build:demo"
}
}