forked from hexojs/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "hexo-site",
"version": "0.0.0",
"private": true,
"hexo": {
"version": "7.0.0"
},
"scripts": {
"build": "hexo generate",
"eslint": "eslint .",
"prepare": "husky"
},
"dependencies": {
"cheerio": "^0.22.0",
"hexo": "^7.0.0",
"hexo-clean-css": "^2.0.0",
"hexo-filter-": "^2.0.2",
"hexo-fs": "^4.1.1",
"hexo-generator-archive": "^2.0.0",
"hexo-generator-feed": "^3.0.0",
"hexo-generator-sitemap": "^3.0.1",
"hexo-renderer-marked": "^6.0.0",
"hexo-renderer-stylus": "^3.0.0",
"hexo-server": "^3.0.0",
"hexo-tag-embed": "^1.0.0-rc.1",
"hexo-uglify": "^2.0.0",
"lunr": "2.3.9",
"sharp": "^0.33.1"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-hexo": "^5.0.0",
"husky": "^9.0.6",
"imagemin-lint-staged": "^0.5.1",
"lint-staged": "^15.2.0"
},
"lint-staged": {
"*.{png,jpeg,jpg,gif,svg}": [
"imagemin-lint-staged"
],
"*.js": "eslint --fix"
},
"engines": {
"node": ">=14"
}
}