-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.55 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
{
"name": "mapo-monorepo",
"private": true,
"description": "Monorepo for @mapomodule",
"author": "bnznamco <gabriele.baldi.01@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/lotrekagency/mapo.git"
},
"workspaces": [
"packages/@mapomodule/*",
"packages/mapomodule",
"example"
],
"vuese": {
"genType": "markdown",
"include": [
"packages/@mapomodule/uikit/components/**/*.vue"
],
"markdownDir": "*"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "nuxt example",
"build:example": "nuxt build example",
"start:example": "nuxt start example",
"pub": "lerna publish --conventional-commits",
"pub:from-git": "lerna publish from-git --conventional-commits",
"docs:gen": "yarn docs:js && vuese gen && ./docs/.vuepress/moveREADME.sh",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:publish": "./docs/.vuepress/publishDOCS.sh",
"docs:js": "jsdoc2md -t docs/.jsdoc2md/TEMPLATE.hbs ./packages/@mapomodule/core/index.js ./packages/@mapomodule/core/api/*.js > docs/core/README.md"
},
"devDependencies": {
"nuxt": "^2.17.3",
"@mapomodule/mapo-integrations-camomilla": "^1.0.0-alpha.11",
"@vuese/cli": "https://github.com/bnznamco/vuese/releases/download/%40vuese%2Fcli%402.14.3.mod2/cli.tar.gz",
"cypress": "^11.1.0",
"eslint": "^8.27.0",
"eslint-plugin-vue": "^9.7.0",
"jsdoc-to-markdown": "^7.1.1",
"lerna": "^6.0.3",
"vuepress": "^1.9.7",
"vuepress-plugin-demo-code": "^1.0.0"
}
}