-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 765 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 765 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
{
"name": "fluent-ui-monorepo",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/stardust-ui/*",
"scripts"
]
},
"scripts": {
"clean": "lerna run clean --stream",
"build": "lerna run build --stream",
"test": "lerna run test --stream",
"lint": "lerna run lint --stream",
"update-snapshots": "lerna run update-snapshots --stream",
"start": "yarn workspace @fluentui/react start",
"start:sd": "yarn workspace @stardust-ui/react-docs start",
"change": "beachball",
"checkchange": "beachball check",
"projrefs": "yarn workspace @fluentui/scripts projrefs",
"pub": "beachball publish"
},
"devDependencies": {
"lerna": "^3.18.1",
"beachball": "^1.14.1"
}
}