-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.62 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.62 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
{
"name": "doks-child-theme",
"description": "Doks child theme",
"version": "0.4.3",
"engines": {
"node": ">=20.11.0"
},
"browserslist": [
"defaults"
],
"repository": "https://github.com/h-enk/doks",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"init": "shx rm -rf .git && git init -b main",
"create": "exec-bin node_modules/.bin/hugo/hugo new",
"prestart": "npm run clean",
"start": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender --noHTTPCache",
"prebuild": "npm run clean",
"build": "exec-bin node_modules/.bin/hugo/hugo --gc --minify",
"clean": "shx rm -rf public resources",
"clean:install": "shx rm -rf package-lock.json node_modules ",
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
"lint:scripts": "eslint assets/js config functions",
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
"lint:markdown:staged": "shx echo $(git diff --diff-filter=d --cached --name-only | grep -E '\\.md$') | xargs markdownlint-cli2",
"lint:markdown-fix": "markdownlint-cli2 --fix \"*.md\" \"content/**/*.md\"",
"lint:markdown-fix:staged": "shx echo $(git diff --diff-filter=d --cached --name-only | grep -E '\\.md$') | xargs markdownlint-cli2 --fix",
"server": "exec-bin node_modules/.bin/hugo/hugo server",
"test": "npm run -s lint",
"env": "env",
"precheck": "npm version",
"check": "exec-bin node_modules/.bin/hugo/hugo version",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
"version": "auto-changelog -p && git add CHANGELOG.md",
"preview": "vite preview --outDir public"
},
"dependencies": {
"@babel/cli": "^7.28",
"@babel/core": "^7.28",
"@babel/preset-env": "^7.28",
"@fullhuman/postcss-purgecss": "^4.1",
"@tabler/icons": "^3.34.0",
"@thulite/doks-core": "^1.8.1",
"@thulite/inline-svg": "^1.2.0",
"auto-changelog": "^2.5.0",
"autoprefixer": "^10.4.21",
"bootstrap": "^5.1",
"exec-bin": "^1.0.0",
"flexsearch": "^0.8.205",
"hugo-installer": "^4.0.1",
"postcss": "^8.5",
"postcss-cli": "^9.1",
"purgecss-whitelister": "^2.4"
},
"devDependencies": {
"eslint": "^8.57",
"markdownlint-cli2": "^0.18.1",
"shx": "^0.4",
"stylelint": "^14.8",
"stylelint-config-standard-scss": "^3.0",
"vite": "^7.0.5"
},
"otherDependencies": {
"hugo": "0.148.1"
},
"overrides": {
"semver": "^7.7.2"
}
}