forked from zq99299/note-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 898 Bytes
/
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
{
"name": "note-book",
"version": "0.0.1",
"description": "使用 vuepress 生成的 markdown 文档站点",
"author": "mrcode <[email protected]>",
"private": false,
"scripts": {
"docs:devx": "vuepress dev docs --open",
"docs:dev": "node --max_old_space_size=4096 ./node_modules/vuepress/cli.js dev docs --open",
"docs:buildx": "vuepress build docs --debug",
"docs:build": "node --max_old_space_size=4096 ./node_modules/vuepress/cli.js build docs"
},
"dependencies": {
"moment": "^2.24.0",
"vuepress-plugin-baidu-tongji-analytics": "^1.0.1",
"vuepress-plugin-code-copy": "^1.0.4",
"vuepress-plugin-tags": "^1.0.0"
},
"devDependencies": {
"@vuepress/plugin-back-to-top": "^1.7.1",
"@vuepress/plugin-medium-zoom": "^1.7.1",
"@vuepress/plugin-pwa": "^1.7.1",
"vuepress": "^1.7.1",
"vuepress-plugin-baidu-autopush": "^1.0.1"
}
}