-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.12 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.12 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
{
"name": "devguide",
"version": "1.0.0",
"private": true,
"description": "The Developer Guidelines static site built with Hugo",
"homepage": "https://devguide.trimble.com",
"bugs": {
"url": "https://github.com/trimble-oss/devguide/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trimble-oss/devguide.git"
},
"license": "private",
"author": "Trimble",
"scripts": {
"build": "npm-run-all lint-css && npx hugo && npm run lint-html",
"build:dev": "npm-run-all lint-css && npx hugo --config hugo.yml,hugo-dev.yml && npm run lint-html",
"imagemin": "npx imagemin-cli static/img/*.png --out-dir=static/img",
"lint-css": "stylelint \"static/*.css\" --fix",
"lint-html": "htmlhint \"layouts/**/*.html\"",
"lint-js": "eslint \"assets/js/*.js\" --fix",
"lint-links": "npx linkinator --recurse ./public/ --silent --skip developer.android.com,fonts.googleapis.com,github.com,stackoverflow.com,www.googleapis.com",
"lint-markdown": "npx markdownlint content/**/*.md",
"lint-spell": "npx cspell \"content/**/*.md\" --no-progress",
"pa11y": "npx pa11y public/index.html",
"pa11y-ci": "npx pa11y-ci --sitemap https://devguide.trimble.com/sitemap.xml",
"prettier": "prettier --write \"assets/**/*.*s\"",
"serve": "npx hugo serve --port 4000 --disableFastRender --navigateToChanged --logLevel info",
"svgo": "npx svgo -f static/img/icons/development-practices/",
"test": "npm-run-all lint-css && npm run lint-html && npx hugo"
},
"devDependencies": {
"@trimble-oss/modus-bootstrap": "^2.3.2",
"@trimble-oss/modus-docs-hugo-theme": "1.0.0-alpha31",
"autoprefixer": "10.4.24",
"clipboard": "2.0.11",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"htmlhint": "1.9.1",
"hugo-bin": "0.142.0",
"jquery": "3.7.1",
"npm-run-all": "4.1.5",
"postcss": "8.5.6",
"postcss-cli": "11.0.1",
"prettier": "3.8.1",
"stylelint": "16.26.1",
"stylelint-config-standard": "40.0.0"
},
"engines": {
"node": ">=22"
},
"volta": {
"node": "22.15.0"
},
"hugo-bin": {
"buildTags": "extended"
}
}