-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "@fcc-cdc/ows",
"version": "1.5.0",
"private": true,
"keywords": [
"wiki"
],
"author": "shiy2008@gmail.com",
"directories": {
"doc": "source/_post/"
},
"hexo": {
"version": "4.2.1"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"hexo": "^4.2.1",
"hexo-auto-category": "^0.2.2",
"hexo-deployer-git": "^2.1.0",
"hexo-generator-archive": "^1.0.0",
"hexo-generator-category": "^1.0.0",
"hexo-generator-feed": "^2.2.0",
"hexo-generator-index": "^1.0.0",
"hexo-generator-slidehtml": "^0.0.64",
"hexo-generator-tag": "^1.0.0",
"hexo-migrator-web": "^1.2.1",
"hexo-permalink-pinyin": "^1.1.0",
"hexo-prism-plugin": "^2.3.0",
"hexo-reference": "^1.0.4",
"hexo-renderer-ejs": "^1.0.0",
"hexo-renderer-marked": "^2.0.0",
"hexo-renderer-stylus": "^1.1.0",
"hexo-server": "^1.0.0",
"icalendar": "^0.7.1"
},
"lint-staged": {
"*.{html,md,css,less,js,json,yml,yaml}": "prettier --write"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged",
"crawl": "hexo migrate web",
"start": "hexo clean && hexo server --draft",
"deploy": "hexo clean && hexo deploy",
"build": "hexo clean && hexo generate"
},
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2"
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 2
}
}