-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.14 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
{
"name": "Blog",
"version": "1.0.0",
"type": "module",
"private": true,
"hexo": {
"version": "6.1.0"
},
"main": "index.js",
"scripts": {
"hexo:clean": "hexo clean",
"debug": "hexo g && hexo s -p=4001",
"sync": "cd public && git pull && cd .. && git pull",
"clean": "rm -f db.json && cd ./public && rm -rf `ls | grep -v .git` && cd ..",
"publish": "npm run clean && hexo g -f",
"deploy": "npm run publish && cd ./public && git add . && git commit && git push && cd ..",
"tpl": "node generate.js",
"gf": "hexo g -f"
},
"dependencies": {
"cd": "^0.3.3",
"del": "^7.0.0",
"hexo": "^6.1.0",
"hexo-excerpt": "^1.2.1",
"hexo-generator-archive": "^0.1.5",
"hexo-generator-category": "^0.1.3",
"hexo-generator-index": "^0.2.1",
"hexo-generator-tag": "^0.2.0",
"hexo-renderer-ejs": "^2.0.0",
"hexo-renderer-less": "^1.0.0",
"hexo-renderer-marked": "^5.0.0",
"hexo-renderer-pug": "^3.0.0",
"hexo-renderer-stylus": "^0.3.3",
"hexo-server": "^0.3.3",
"hexo-wordcount": "^6.0.1",
"simple-git": "^3.17.0"
},
"repository": "[email protected]:weisiwu/Blog.git"
}