-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.33 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@awes-io/client",
"description": "The Awes.io Frontend Framework #vue #nuxt #ui",
"version": "0.1.0",
"license": "MIT",
"private": true,
"author": "Awescode GmbH <[email protected]> (https://www.awescode.de)",
"contributors": [
"Yevhen L. <[email protected]>"
],
"bugs": {
"url": "https://github.com/awes-io/client/issues"
},
"homepage": "https://www.awes.io",
"keywords": [
"ui",
"vue",
"nuxt",
"awes-io",
"material design"
],
"repository": {
"type": "git",
"url": "[email protected]:awes-io/client.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"dev:ui": "lerna run dev --scope @awes-io/ui --stream",
"dev:ui-nuxt": "lerna run dev-nuxt --scope @awes-io/ui --stream",
"build:ui": "lerna run build --scope @awes-io/ui",
"build:ui:docs": "node -r esm scripts/docs-parser.js",
"build:vue-mc": "lerna run build --scope @awes-io/vue-mc",
"dev:eg:basic-ui": "lerna run dev --scope basic-ui --stream",
"dev:eg:admin": "lerna run dev --scope example-admin --stream",
"dev": "lerna bootstrap && yarn dev:eg:basic-ui",
"pkg": "yarn build:vue-mc && lerna publish"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@rollup/plugin-alias": "^3.0.0",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-replace": "^2.3.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/gitlab-config": "^5.0.0",
"@semantic-release/npm": "^5.3.4",
"@vuese/markdown-render": "^2.5.3",
"@vuese/parser": "^2.4.3",
"change-case": "^4.1.1",
"esm": "^3.2.25",
"fs-extra": "^8.1.0",
"lerna": "^3.22",
"sort-package-json": "^1.39.0",
"husky": "^3.0.1"
},
"workspaces": [
"packages/*",
"examples/*"
]
}