-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.3 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
{
"name": "defensive-lab-agency",
"version": "0.0.0",
"description": "Doks theme",
"author": "Hyas",
"license": "MIT",
"scripts": {
"create": "hugo new",
"dev": "exec-bin node_modules/.bin/hugo/hugo server --disableFastRender --noHTTPCache --bind 0.0.0.0",
"lint": "npm run lint:scripts && npm run lint:styles && npm run lint:markdown",
"lint:scripts": "eslint --cache assets/js",
"lint:styles": "stylelint --cache \"assets/scss/**/*.{css,sass,scss}\"",
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
"format": "prettier **/** -w -c",
"build": "exec-bin node_modules/.bin/hugo/hugo --minify --gc",
"postinfo": "exec-bin node_modules/.bin/hugo/hugo version",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
"preview": "vite preview --outDir public --host"
},
"dependencies": {
"@hyas/doks-core": "^1.6.1",
"@hyas/images": "^3.2.0",
"@hyas/inline-svg": "^1.1.0",
"@hyas/seo": "^2.3.0",
"@tabler/icons": "^3.2.0",
"gethyas": "^2.4.2",
"exec-bin": "^1.0.0",
"hugo-installer": "^4.0.1"
},
"otherDependencies": {
"hugo": "0.123.7"
},
"devDependencies": {
"prettier": "^3.2.5",
"vite": "^5.2.10"
},
"engines": {
"node": ">=20.11.0"
}
}