-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
38 lines (38 loc) · 1.28 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
{
"name": "root",
"private": true,
"scripts": {
"postinstall": "./bin/postinstall.sh",
"build": "turbo run build",
"build:docs": "turbo run build --filter=@brizy/docs",
"build:core": "npm run build:prod --workspace=@builder/core",
"build:demo": "npm run build:prod --workspace=@builder/demo",
"build:scripts": "turbo run build --filter=@brizy/scripts",
"build:demonextjs": "turbo run build --filter=demo-nextjs",
"start:docs": "npm run start --workspace=@brizy/docs",
"start:core": "npm run start --workspace=@builder/core",
"start:demo": "npm run start --workspace=@builder/demo",
"start:demoreact": "npm run start --workspace=demo-react",
"start:demonextjs": "npm run start --workspace=demo-nextjs",
"dev:demonextjs": "npm run dev --workspace=demo-nextjs",
"start:thirdparty": "npm run start --workspace=thirdparty-widgets",
"tsc": "turbo run tsc",
"tsc:core": "turbo run tsc --filter=@builder/core",
"tsc:demo": "turbo run tsc --filter=@builder/demo",
"lint": "turbo run lint",
"check": "turbo run lint tsc"
},
"workspaces": [
"demo/*",
"packages/*",
"docusaurus",
"plugins/*"
],
"devDependencies": {
"turbo": "^2.0.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}