-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 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,
"hexo": {
"version": "3.9.0"
},
"scripts": {
"dev": "hexo clean && hexo s",
"dev-with-html-prefix": "node -r ./hack-hexo.js node_modules/hexo/bin/hexo s",
"build": "hexo generate -f",
"build-with-html-prefix": "node -r ./hack-hexo.js node_modules/hexo/bin/hexo g -f",
"publish": "hexo clean && hexo d -g",
"publish-html": "node -r ./hack-hexo.js node_modules/hexo/bin/hexo clean && node -r ./hack-hexo.js node_modules/hexo/bin/hexo d -g"
},
"dependencies": {
"hexo": "^3.9.0",
"hexo-deployer-git": "^1.0.0",
"hexo-generator-archive": "^0.1.5",
"hexo-generator-category": "^0.1.3",
"hexo-generator-index": "^0.2.1",
"hexo-generator-search": "^2.4.0",
"hexo-generator-tag": "^0.2.0",
"hexo-prism-plugin": "^2.3.0",
"hexo-renderer-ejs": "^0.3.1",
"hexo-renderer-marked": "^0.3.2",
"hexo-renderer-stylus": "^0.3.3",
"hexo-server": "^0.3.3",
"hexo-wordcount": "^6.0.1"
},
"devDependencies": {
"@types/node": "^12.12.5",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}