-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
56 lines (56 loc) · 1.38 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
48
49
50
51
52
53
54
55
56
{
"name": "zima-docs",
"version": "0.0.0",
"private": true,
"hexo": {
"version": "7.2.0"
},
"scripts": {
"start": "hexo server & yarn open",
"open": "open-cli http://localhost:4000/admin",
"build": "hexo generate",
"eslint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"cheerio": "^0.22.0",
"hexo": "^7.2.0",
"hexo-admin": "^2.3.0",
"hexo-asset-image-for-hexo5": "^2.1.7",
"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-search": "^2.4.3",
"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-tag-mmedia": "^1.1.7",
"hexo-tag-youtube-responsive": "^0.4.2",
"hexo-uglify": "^2.0.0",
"lunr": "2.3.9",
"sharp": "^0.30.2"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-hexo": "^5.0.0",
"hexo-browsersync": "^0.3.0",
"husky": "^8.0.1",
"imagemin-lint-staged": "^0.5.1",
"lint-staged": "^13.0.3",
"open-cli": "^8.0.0"
},
"lint-staged": {
"*.{png,jpeg,jpg,gif,svg}": [
"imagemin-lint-staged",
"git add"
],
"*.js": "eslint --fix"
},
"engines": {
"node": ">=12.9.0"
}
}