forked from vuepress-reco/vuepress-theme-reco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.3 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
{
"private": true,
"workspaces": [
"packages/vuepress-theme-reco",
"packages/@vuepress-reco/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "tsc --build",
"build:example": "vuepress build example",
"build:docs": "vuepress build docs",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"clean": "lerna run clean --stream",
"commit": "git add . && git-cz",
"copy": "lerna run copy --stream",
"copy-watch": "lerna run copy --parallel -- --watch",
"deploy:docs": "bash scripts/docs-deploy.sh",
"dev": "yarn copy-watch & yarn build --watch & yarn dev:example",
"dev:example": "DEBUG=vuepress* vuepress dev example",
"dev:docs": "yarn copy-watch & yarn build --watch & vuepress dev docs",
"start:debug": "DEBUG=vuepress* vuepress dev example",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "yarn lint && yarn clean && yarn copy && yarn build && yarn test && lerna publish prerelease --dist-tag next",
"update": "yarn upgrade-interactive --latest"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{json,yml,css,scss}": "prettier --write",
"package.json": "sort-package-json"
},
"prettier": "prettier-config-vuepress",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/events": "^3.0.0",
"@types/jest": "^26.0.22",
"@types/unist": "^2.0.3",
"@types/vfile": "^4.0.0",
"commitizen": "^4.1.2",
"concurrently": "^6.0.0",
"conventional-changelog-cli": "^2.0.34",
"cpx": "^1.5.0",
"cz-customizable": "^6.2.0",
"eslint": "^7.23.0",
"eslint-config-vuepress": "^3.2.1",
"eslint-config-vuepress-typescript": "^2.2.1",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^10.2.7",
"prettier": "^2.2.1",
"prettier-config-vuepress": "^1.2.0",
"sort-package-json": "^1.44.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"ts-jest": "^26.4.4",
"typescript": "4.2.3",
"vuepress": "2.0.0-beta.33"
}
}