-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
41 lines (41 loc) · 1.36 KB
/
package.json
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
{
"name": "technicalwritingcourse",
"version": "0.0.0",
"description": "Doks theme",
"author": "Hyas",
"license": "MIT",
"scripts": {
"dev": "hugo server --disableFastRender --noHTTPCache",
"create": "hugo new",
"lint": "npm run lint:markdown",
"lint:scripts": "eslint --cache themes/doks/assets/js",
"lint:styles": "stylelint --cache \"themes/doks/assets/scss/**/*.{css,sass,scss}\"",
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "hugo --minify --gc",
"preview": "http-server --gzip --brotli --ext=html --cors",
"clean": "npm run clean:build && npm run clean:lint && npm run clean:install",
"clean:build": "shx rm -rf public resources .hugo_build.lock",
"clean:install": "shx rm -rf node_modules package-lock.json yarn.lock pnpm-lock.yaml",
"clean:lint": "shx rm -rf .eslintcache .stylelintcache",
"preinfo": "npm version",
"info": "npm list"
},
"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": "^2.40.0",
"gethyas": "^2.4.2"
},
"devDependencies": {
"prettier": "^3.2.5",
"vite": "^5.2.10"
},
"engines": {
"node": ">=16.12.0",
"pnpm": ">=8.6.2"
},
"packageManager": "[email protected]"
}