-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 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
{
"name": "blogs",
"version": "1.0.0",
"repository": "https://github.com/lq782655835/blogs.git",
"author": "[email protected]",
"scripts": {
"dev": "npm run config && vuepress dev docs",
"build": "npm run config && vuepress build docs",
"config": "npm run auto && npm run format",
"auto": "vuepress-auto-read --blogUrl=https://lq782655835.github.io/blogs",
"format": "prettier --write './**/*.{js,ts,vue,json}'",
"ghpages": "gh-pages -d docs/.vuepress/dist"
},
"folderTitleMap": {
"team-standard": "团队规范",
"project": "Project",
"js": "JS",
"node": "NodeJS",
"vue": "Vue",
"react": "React",
"tools": "效率工具",
"read-books": "读书笔记"
},
"license": "MIT",
"devDependencies": {
"@vuepress/plugin-back-to-top": "^1.0.0-alpha.0",
"@vuepress/plugin-google-analytics": "^1.2.0",
"@vuepress/plugin-medium-zoom": "^1.0.0-alpha.0",
"gh-pages": "^2.2.0",
"node-vuepress-auto-read": "^0.1.0",
"prettier": "^1.15.3",
"vuepress": "1.2.0",
"vuepress-plugin-code-copy": "^1.0.4",
"vuepress-plugin-flowchart": "^1.4.3",
"vuepress-plugin-reading-progress": "^1.0.8",
"vuepress-theme-vuesax": "^1.0.0"
},
"dependencies": {
"vuepress-theme-antdocs": "^1.0.1"
}
}