This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
45 lines (45 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
{
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/slanatech/vue-monorepo-boilerplate"
},
"author": "https://github.com/sv2",
"homepage": "https://slanatech.github.io/vue-monorepo-boilerplate/",
"bugs": {
"url": "https://github.com/slanatech/vue-monorepo-boilerplate/issues",
"email": "sv2@slana.tech"
},
"license": "MIT",
"config": {
"imageRepo": "slanatech/vue-monorepo-boilerplate",
"imageName": "vue-monorepo-boilerplate"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "concurrently --kill-others --success first \"npm start --prefix ./packages/server\" \"npm run serve --prefix ./packages/ui\"",
"test": "npm run test:common && npm run test:server && npm run test:ui",
"test:common": "npm test --prefix ./packages/common",
"test:server": "npm test --prefix ./packages/server",
"test:ui": "npm test --prefix ./packages/ui",
"build": "lerna run build",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "yarn run docs:build && ./scripts/docsdeploy.sh",
"getv": "echo $IMAGE_VERSION",
"docker:build": "IMAGE_VERSION=$(node -p \"require('./lerna.json').version\") && docker image build -t $npm_package_config_imageRepo:$IMAGE_VERSION -f ./docker/Dockerfile .",
"publish": "lerna publish"
},
"devDependencies": {
"lerna": "^2.11.0",
"vuepress": "^0.10.1",
"vuepress-theme-vue": "^1.1.0",
"concurrently": "^3.6.0"
},
"engines": {
"node": ">= 8"
}
}