forked from epicmaxco/vuestic-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.73 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
39
40
41
42
43
44
45
46
{
"name": "vuestic-ui-wrapper",
"version": "1.0.0",
"license": "MIT",
"repository": "https://github.com/epicmaxco/vuestic-ui",
"devDependencies": {
"lerna": "^3.20.2",
"syncpack": "^9.8.6",
"yorkie": "^2.0.0"
},
"private": true,
"scripts": {
"serve": "yarn workspace vuestic-ui serve",
"serve:book": "yarn workspace vuestic-ui serve",
"start:docs:ci": "yarn workspace docs start:ci",
"serve:production": "yarn workspace vuestic-ui serve:production",
"lint": "yarn workspace vuestic-ui lint",
"build": "yarn workspace vuestic-ui build",
"build:book": "yarn workspace vuestic-ui build:book",
"build:types": "yarn workspace vuestic-ui build:types",
"test:unit": "yarn workspace vuestic-ui test:unit",
"test:bundlers": "yarn workspace bundler-test test",
"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:docspage": "yarn workspace docs generate:docspage",
"generate:component": "yarn workspace docs generate:component",
"sandbox:vite": "yarn workspace sandbox dev:vite",
"sandbox:nuxt": "yarn workspace sandbox dev:nuxt",
"sandbox:vue-cli": "yarn workspace sandbox dev:vue-cli",
"sandbox:web-components": "yarn workspace sandbox dev:web-components",
"release": "yarn workspace deploy release"
},
"workspaces": {
"packages": [
"packages/*",
"packages/extensions/*"
]
},
"gitHooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit --since HEAD"
}
}