-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.96 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@trimble-oss/modus-docs-hugo-theme",
"version": "1.0.0-alpha30",
"description": "A Documentation theme for Hugo built by Trimble",
"homepage": "https://github.com/trimble-oss/modus-docs-hugo-theme",
"bugs": {
"url": "https://github.com/trimble-oss/modus-docs-hugo-theme/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc"
},
"repository": {
"type": "git",
"url": "https://github.com/trimble-oss/modus-docs-hugo-theme"
},
"license": "MIT",
"author": "Trimble",
"scripts": {
"build": "npx hugo",
"lint": "npm run lint-css && npm run lint-html && npm run lint-js",
"lint-css": "stylelint \"assets/css/*.*\" --fix",
"lint-html": "htmlhint \"build/**/index.html\"",
"lint-js": "eslint assets/js/*.js --fix",
"lint-links": "npx linkinator ./public --recurse --silent",
"lint-markdown": "npx markdownlint-cli content/**/*.md --fix",
"lint-spellcheck": "npx cspell \"content/**/*.md\" --no-progress",
"prettier": "prettier --write \"**/*.{json,js,md,svg,yml}\"",
"serve": "hugo serve --port 4000 --disableFastRender --navigateToChanged",
"test": "npm run lint-css && npm run lint-html && npm run lint-js",
"pa11y": "npx pa11y-ci https://victorious-field-0a3116c10.3.azurestaticapps.net/",
"svgo": "npx svgo --folder=\"static/img/icons/\""
},
"dependencies": {
"@trimble-oss/modus-bootstrap": "^2.0.8",
"@trimble-oss/modus-icons": "^1.16.0"
},
"devDependencies": {
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"htmlhint": "1.1.4",
"hugo-bin": "0.141.2",
"postcss": "8.5.2",
"postcss-cli": "11.0.0",
"prettier": "3.5.1",
"stylelint": "16.14.1",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-order": "6.0.4"
},
"hugo-bin": {
"buildTags": "extended"
},
"files": [
"assets",
"data",
"layouts",
"static"
],
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "20.18.3"
}
}