-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 864 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 864 Bytes
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
{
"private": "true",
"scripts": {
"docs:build": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{json,yml,css,scss,md}": "prettier --write",
"package.json": "sort-package-json"
},
"prettier": "prettier-config-vuepress",
"devDependencies": {
"@vuepress/plugin-back-to-top": "^2.0.0-beta.36",
"@vuepress/plugin-docsearch": "^2.0.0-beta.36",
"@vuepress/plugin-search": "^2.0.0-beta.36",
"eslint": "^8.7.0",
"eslint-config-vuepress": "^3.5.0",
"eslint-config-vuepress-typescript": "^2.5.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "^2.6.0",
"prettier-config-vuepress": "^1.3.0",
"sort-package-json": "^1.54.0",
"typescript": "^4.6.2",
"vuepress": "^2.0.0-beta.35"
}
}