-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
36 lines (36 loc) · 1.25 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
{
"name": "hexo-site",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "hexo generate --bail",
"clean": "hexo clean",
"start": "hexo server --watch",
"deploy:setup-user": "git config --global user.name 'github-actions[bot]'",
"deploy:setup-email": "git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'",
"deploy:setup-history": "rm -rf .deploy_git && git clone --branch $(hexo config deploy.branch --silent) $(hexo config deploy.repo --silent) .deploy_git",
"predeploy": "(npm run deploy:setup-user & npm run deploy:setup-email) && npm run deploy:setup-history",
"deploy": "hexo generate --deploy"
},
"hexo": {
"version": "5.4.0"
},
"dependencies": {
"@iktakahiro/markdown-it-katex": "^4.0.1",
"@jiangtj/hexo-extend-theme": "^0.2.4",
"hexo": "^5.4.0",
"hexo-deployer-git": "^3.0.0",
"hexo-generator-category": "^1.0.0",
"hexo-generator-tag": "^1.0.0",
"hexo-next-publist": "^2.1.2",
"hexo-pagination": "^2.0.0",
"hexo-renderer-ejs": "^1.0.0",
"hexo-renderer-markdown-it": "^5.0.0",
"hexo-renderer-stylus": "^2.0.1",
"hexo-theme-next": "^8.8.0"
},
"devDependencies": {
"hexo-cli": "^4.3.0",
"hexo-server": "^2.0.0"
}
}