This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
forked from vuejs/vuepress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.51 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
76
77
78
{
"private": true,
"description": "Minimalistic doc generator with Vue component based layout system",
"workspaces": [
"packages/*"
],
"scripts": {
"boot": "node scripts/bootstrap.js",
"build": "yarn tsc && yarn build:docs",
"build:docs": "yarn workspace docs build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
"clean": "lerna clean && rm -rf node_modules",
"dev": "yarn tsc && yarn dev:docs",
"dev:docs": "yarn workspace docs dev",
"postinstall": "husky install",
"lint": "eslint packages --ext .js,.ts,.vue",
"lint:md-lint": "markdownlint **/*.md --ignore **/node_modules/**",
"packages:changed": "lerna changed",
"packages:diff": "lerna diff",
"packages:list": "lerna ls -l",
"register-vuepress": "lerna exec --scope vuepress -- yarn link",
"release": "ts-node -O {\\\"module\\\":\\\"commonjs\\\"} scripts/release",
"remote-version": "node scripts/remote-version.js",
"show-help": "yarn workspace docs show-help",
"test": "node scripts/test.js",
"tsc": "yarn workspace @mr-hope/vuepress-shared-utils tsc",
"unregister-vuepress": "lerna exec --scope vuepress -- yarn unlink",
"view-info": "yarn tsc && yarn workspace docs view-info"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{md,json,yml}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@types/escape-html": "1.0.1",
"@types/fs-extra": "9.0.13",
"@types/hash-sum": "1.0.0",
"@types/inquirer": "8.1.3",
"@types/lru-cache": "5.1.1",
"@types/node": "^16.11.6",
"@types/semver": "7.3.9",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/eslint-config-typescript": "8.0.0",
"conventional-changelog-cli": "2.1.1",
"eslint": "8.16.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "7.20.0",
"husky": "7.0.4",
"inquirer": "8.2.0",
"lerna": "4.0.0",
"lint-staged": "11.2.6",
"markdownlint-cli": "0.29.0",
"minimist": "1.2.5",
"prettier": "2.4.1",
"sort-package-json": "1.52.0",
"ts-node": "10.4.0",
"typescript": "4.4.4"
}
}