-
-
Notifications
You must be signed in to change notification settings - Fork 320
/
package.json
75 lines (75 loc) · 2.06 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
74
75
{
"name": "vuepress-theme-reco",
"private": true,
"license": "MIT",
"main": "index.js",
"workspaces": [
"packages/vuepress-theme-reco",
"packages/@vuepress-reco/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "concurrently \"npm run build --prefix packages/@vuepress-reco/core\"",
"build:example": "vuepress build example",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"commit": "git add . && git-cz",
"deploy:example": "bash scripts/deploy.sh",
"dev": "vuepress dev example",
"eslint-ext": "eslint --ext .js,.vue ./",
"eslint-fix": "eslint --fix --ext .js,.vue ./",
"prepublish": "lerna publish --dist-tag next",
"publish": "yarn build && lerna publish",
"push": "yarn commit && git push",
"update": "yarn upgrade-interactive --latest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix --ext .js,.vue ./",
"git add"
],
"package.json": [
"sort-package-json",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/events": "^3.0.0",
"@types/jest": "^26.0.15",
"@types/unist": "^2.0.3",
"@types/vfile": "^4.0.0",
"@types/vfile-message": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"babel-eslint": "^10.1.0",
"commitizen": "^4.1.2",
"concurrently": "^5.3.0",
"conventional-changelog-cli": "^2.0.34",
"cz-customizable": "^6.2.0",
"eslint": "^6.8.0",
"eslint-plugin-typescript": "^0.14.0",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lerna": "^5.1.8",
"lint-staged": "^10.2.7",
"sort-package-json": "^1.44.0",
"ts-jest": "^26.4.4",
"typescript": "4.1.2",
"vuepress": "^1.8.0"
},
"publishConfig": {
"access": "public"
}
}