forked from hexojs/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.05 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
42
43
44
45
46
47
{
"name": "hexo-site",
"version": "0.0.0",
"private": true,
"hexo": {
"version": "5.4.0"
},
"scripts": {
"build": "hexo generate",
"eslint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"cheerio": "^0.22.0",
"hexo": "hexojs/hexo",
"hexo-clean-css": "^2.0.0",
"hexo-filter-nofollow": "^2.0.2",
"hexo-fs": "^3.1.0",
"hexo-generator-archive": "^1.0.0",
"hexo-generator-feed": "^3.0.0",
"hexo-generator-sitemap": "^3.0.1",
"hexo-renderer-marked": "^5.0.0",
"hexo-renderer-pug": "^3.0.0",
"hexo-renderer-stylus": "^2.0.0",
"hexo-server": "^3.0.0",
"hexo-uglify": "^2.0.0",
"lunr": "2.3.9",
"sharp": "^0.30.2"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-hexo": "^5.0.0",
"husky": "^8.0.1",
"imagemin-lint-staged": "^0.5.1",
"lint-staged": "^13.0.3"
},
"lint-staged": {
"*.{png,jpeg,jpg,gif,svg}": [
"imagemin-lint-staged",
"git add"
],
"*.js": "eslint --fix"
},
"engines": {
"node": ">=12.9.0"
}
}