-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 794 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "root",
"devDependencies": {
"lerna": "^4.0.0"
},
"scripts": {
"docs": "npx docsify serve -o",
"bootstrap": "lerna bootstrap",
"dev": "lerna run --scope @right-menu/core watch --parallel",
"vue": "lerna run --scope @right-menu/core --scope vue-right-menu dev --parallel",
"react": "lerna run --scope @right-menu/core --scope @right-menu/react dev --parallel",
"build": "lerna run build --sort --stream",
"update-version": "lerna version --conventional-commits --no-push --no-changelog --no-git-tag-version",
"publish-to-npm": "lerna publish from-package",
"publish-beta": "lerna publish --no-git-tag-version --dist-tag beta",
"publish": "npm publish --access public"
},
"private": true,
"workspaces": [
"packages/*"
]
}