-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.07 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.07 KB
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
59
60
61
62
63
64
{
"name": "tech-query",
"version": "2.1.0",
"description": "Personal Web site of TechQuery focused on Web & JavaScript full-stack development",
"author": "shiy2008@gmail.com",
"private": true,
"homepage": "https://tech-query.me/",
"repository": {
"type": "git",
"url": "git+https://github.com/TechQuery/TechQuery.github.io.git"
},
"bugs": {
"url": "https://github.com/TechQuery/TechQuery.github.io/issues"
},
"scripts": {
"prepare": "husky",
"resume-json": "cd source/_data/ && yaml2json resume.yml -p | sed -r s/T[0-9]+:[0-9]+:[0-9]+\\.[0-9]+Z//g > resume.json",
"resume-html": "mkdir public && cd source/_data/ && resume export ../../public/resume.html --theme kendall",
"pack-resume": "npm run resume-json && npm run resume-html",
"build": "hexo clean && npm run pack-resume && hexo generate",
"deploy": "hexo clean && npm run pack-resume && hexo deploy",
"start": "hexo clean && npm run pack-resume && hexo server",
"test": "lint-staged"
},
"lint-staged": {
"*.{html,md,css,less,js,json,yml,yaml}": "prettier --write"
},
"dependencies": {
"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-search": "^2.4.3",
"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-renderer-ejs": "^1.0.0",
"hexo-renderer-marked": "^3.3.0",
"hexo-renderer-stylus": "^1.1.0",
"hexo-server": "^1.0.0"
},
"devDependencies": {
"husky": "^9.1.3",
"jsonresume-theme-kendall": "^0.2.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"resume-cli": "^3.1.2",
"yamljs": "^0.3.0"
},
"hexo": {
"version": "4.2.1"
},
"prettier": {
"tabWidth": 2,
"trailingComma": "none",
"arrowParens": "avoid",
"singleQuote": true
}
}