-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.04 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.04 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
{
"name": "@abysser/blog",
"version": "1.0.5",
"private": true,
"engines": {
"node": ">=12.13.0"
},
"scripts": {
"prepare": "husky install",
"build": "hexo generate",
"clean": "hexo clean",
"deploy": "hexo deploy",
"serve": "hexo server --debug",
"eslint": "eslint --fix --ext .js scripts/",
"prettier": "prettier --write .",
"matterlint": "node scripts/matter.lint.js --map created:date --includes source/ --write",
"archive": "node ./scripts/posts.afternew.js ",
"lint": "npm run eslint && npm run matterlint -- source/ && npm run prettier",
"analyse": "node scripts/contributors.analyse.js"
},
"hexo": {
"version": "6.2.0"
},
"dependencies": {
"@iktakahiro/markdown-it-katex": "^4.0.1",
"bulma-stylus": "^0.8.0",
"hexo": "^6.2.0",
"hexo-component-inferno": "^2.0.0",
"hexo-deployer-git": "^3.0.0",
"hexo-generator-archive": "^1.0.0",
"hexo-generator-category": "^1.0.0",
"hexo-generator-index": "^2.0.0",
"hexo-generator-tag": "^1.0.0",
"hexo-pagination": "^2.0.0",
"hexo-renderer-ejs": "^2.0.0",
"hexo-renderer-inferno": "^0.1.3",
"hexo-renderer-marked": "^5.0.0",
"hexo-renderer-stylus": "^2.1.0",
"hexo-server": "^3.0.0",
"hexo-theme-landscape": "^0.0.3",
"markdown-it": "^13.0.1"
},
"devDependencies": {
"@abysser/jit": "^1.3.11",
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"commander": "^9.4.0",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"gray-matter": "^4.0.3",
"husky": "^8.0.1",
"js-yaml": "^4.1.0",
"lint-staged": "^13.0.3",
"markdownlint": "^0.26.2",
"markdownlint-cli2": "^0.5.1",
"prettier": "2.7.1"
}
}