forked from erpcya/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "blog",
"version": "1.0.0",
"description": "个人博客",
"scripts": {
"build:vite": "vuepress-vite build src",
"build:vite-debug": "cross-env DEBUG=vuepress* vuepress-vite build src",
"build:webpack": "vuepress-webpack build src",
"build:webpack-debug": "cross-env DEBUG=vuepress* vuepress-webpack build src",
"dev:vite": "vuepress-vite dev src",
"dev:vite-clean": "vuepress-vite dev src --clean-cache",
"dev:vite-debug": "cross-env DEBUG=vuepress* vuepress-vite dev src",
"dev:webpack": "vuepress-webpack dev src",
"dev:webpack-clean": "vuepress-webpack dev src --clean-cache",
"dev:webpack-debug": "cross-env DEBUG=vuepress* vuepress-webpack dev src",
"lint": "prettier --check --write .",
"lint:check": "prettier --check .",
"lint-md": "markdownlint **/*.md --ignore node_modules --fix",
"test": "echo \"Warning: no test specified\" && exit 0"
},
"author": "Mr.Hope",
"license": "MIT",
"keywords": [
"vuepress",
"personal-blog"
],
"dependencies": {
"@vuepress/cli": "2.0.0-beta.48",
"@vuepress/client": "2.0.0-beta.48",
"@vuepress/plugin-docsearch": "2.0.0-beta.48",
"axios": "^0.27.2",
"sass-loader": "13.0.0",
"vue": "3.2.37",
"vuepress-theme-hope": "2.0.0-beta.84",
"vuepress-vite": "2.0.0-beta.48",
"vuepress-webpack": "2.0.0-beta.48"
},
"devDependencies": {
"cross-env": "7.0.3",
"markdownlint-cli": "0.31.1",
"prettier": "2.6.2"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"react",
"react-dom",
"webpack"
]
}
}
}