forked from hexojs/site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.35 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
57
58
{
"name": "hexo-site",
"version": "0.0.0",
"private": true,
"hexo": {
"version": "3.8.0"
},
"scripts": {
"build": "hexo generate && gulp",
"eslint": "eslint .",
"deploy": "hexo deploy"
},
"dependencies": {
"cheerio": "^0.22.0",
"hexo": "github:hexojs/hexo",
"hexo-deployer-git": "^1.0.0",
"hexo-generator-archive": "^0.1.4",
"hexo-generator-feed": "^1.1.0",
"hexo-generator-sitemap": "^1.1.2",
"hexo-renderer-jade": "^0.4.1",
"hexo-renderer-marked": "^0.3.2",
"hexo-renderer-stylus": "^0.3.1",
"hexo-server": "^0.3.3",
"lodash": "^4.17.11",
"lunr": "2.3.6"
},
"devDependencies": {
"del": "^4.0.0",
"eslint": "^5.10.0",
"eslint-config-hexo": "^3.0.0",
"gulp": "^3.9.1",
"gulp-cheerio": "^0.6.2",
"gulp-clean-css": "^4.0.0",
"gulp-if": "^2.0.0",
"gulp-responsive": "^2.8.0",
"gulp-rev": "^9.0.0",
"gulp-rev-collector": "^1.0.2",
"gulp-rev-replace": "^0.4.3",
"gulp-uglify": "^3.0.1",
"gulp-unique-files": "^0.1.2",
"gulp-useref": "^3.1.6",
"husky": "^1.1.3",
"imagemin-lint-staged": "^0.4.0",
"lint-staged": "^8.0.4",
"rename": "^1.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{png,jpeg,jpg,gif,svg}": [
"imagemin-lint-staged",
"git add"
]
}
}