forked from epicmaxco/vuestic-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.45 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
{
"name": "vuestic-ui-wrapper",
"version": "1.0.0-alpha.12",
"license": "MIT",
"repository": "https://github.com/epicmaxco/vuestic-ui",
"devDependencies": {
"@vue/cli-plugin-typescript": "5.0.0-alpha.8",
"lerna": "^3.20.2",
"yorkie": "^2.0.0"
},
"private": true,
"scripts": {
"serve": "yarn workspace vuestic-ui serve",
"serve:book": "yarn workspace vuestic-ui serve",
"test": "yarn workspace vuestic-ui test",
"lint": "yarn workspace vuestic-ui lint",
"build": "yarn workspace vuestic-ui build",
"build:book": "yarn workspace vuestic-ui build:book",
"test:unit": "yarn workspace vuestic-ui test:unit",
"test:coverage": "yarn workspace vuestic-ui test:coverage",
"lint:style": "yarn workspace vuestic-ui lint:style",
"serve:docs": "yarn workspace docs serve",
"build:docs": "yarn workspace docs build",
"build:docs:ci": "yarn workspace docs build:ci",
"push": "yarn workspace vuestic-ui push",
"push-production": "yarn workspace vuestic-ui push-production",
"generate:docs": "yarn workspace docs generate:docspage",
"generate:component": "yarn workspace docs generate:component",
"run-all": "wt -d packages/ui --title vuestic-book cmd /k yarn serve --port 8080; split-pane -d packages/docs --title vuestic-docs cmd /k yarn serve --port 8081"
},
"workspaces": [
"packages/*"
],
"gitHooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD"
}
}