forked from Fechin/reference
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.44 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.44 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "CheatSheets.zip",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:hexo": "npx hexo clean && npx hexo server",
"dev:css": "npx postcss themes/coo/source/css/style.tailwindcss -o themes/coo/source/css/style.css --watch",
"build": "run-s build:*",
"build:clean": "npx hexo clean",
"build:rm-db.json": "rm db.json || exit 0",
"build:css": "npx postcss themes/coo/source/css/style.tailwindcss -o themes/coo/source/css/style.css",
"build:generate": "npx hexo generate",
"build:gulp": "npx gulp --max-old-space-size=4096",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint themes/coo/source/js/**/*.js --fix",
"lint:check": "eslint themes/coo/source/js/**/*.js",
"lint:css": "stylelint **/*.css --fix",
"test": "run-s lint:check format:check",
"audit": "pnpm audit --audit-level moderate",
"audit:fix": "pnpm audit --fix",
"security:check": "pnpm audit && pnpm outdated",
"deps:check": "npx npm-check-updates",
"deps:update": "npx npm-check-updates -u && pnpm install",
"prepare": "husky",
"commit": "cz"
},
"hexo": {
"version": "7.3.0"
},
"dependencies": {
"gulp": "^5.0.1",
"gulp-cli": "^3.1.0",
"gulp-ext-replace": "^0.3.0",
"gulp-htmlclean": "^2.7.22",
"gulp-htmlmin": "^5.0.1",
"gulp-minify-css": "^1.2.4",
"gulp-postcss": "^10.0.0",
"gulp-uglify-es": "^3.0.0",
"gulp-version-number": "^0.2.4",
"hexo": "^7.3.0",
"hexo-browsersync": "^0.3.0",
"hexo-excerpt": "^1.3.1",
"hexo-filter-nofollow": "^2.0.2",
"hexo-fs": "^5.0.0",
"hexo-generator-index": "^4.0.0",
"hexo-generator-sitemap": "^3.0.1",
"hexo-log": "^4.1.0",
"hexo-pagination": "^4.0.0",
"hexo-related-popular-posts": "^5.0.1",
"hexo-renderer-ejs": "^2.0.0",
"hexo-renderer-markdown-it": "^5.0.0",
"hexo-renderer-stylus": "^3.0.1",
"hexo-server": "^3.0.0",
"hexo-util": "^3.3.0",
"highlight.js": "^11.11.1",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-checkbox": "^1.1.0",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-highlight-lines": "^1.0.2",
"markdown-it-highlightjs": "^4.2.0",
"markdown-it-ins": "^4.0.0",
"markdown-it-shortcode-tag": "^1.1.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"autoprefixer": "^10.4.21",
"commitizen": "^4.3.1",
"cssnano": "^7.0.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"gulp-clean-css": "^4.3.0",
"gulp-filesize": "^0.0.6",
"gulp-javascript-obfuscator": "^1.1.6",
"gulp-replace": "^1.1.4",
"gulp-rev": "^11.0.0",
"gulp-terser": "^2.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"npm-run-all2": "^8.0.4",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"stylelint": "^16.20.0",
"stylelint-config-standard": "^38.0.0",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}