-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 2 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
{
"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 \"assets/css/*.scss\" --fix",
"lint-html": "htmlhint \"layouts/**/*.html\"",
"lint-js": "eslint \"assets/js/*.js\" --fix",
"lint-links": "npx linkinator ./public/ --silent --recurse",
"lint-markdown": "npx markdownlint content/**/*.md",
"lint-spellcheck": "npx cspell \"content/**/*.md\" --no-progress",
"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 && npm run lint-js && npx hugo"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "7.0.2",
"@trimbleinc/modus-bootstrap": "1.6.4",
"@trimble-oss/modus-docs-hugo-theme": "^1.0.0-alpha30",
"autoprefixer": "10.4.20",
"clipboard": "2.0.11",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"htmlhint": "1.1.4",
"hugo-bin": "0.141.2",
"jquery": "3.7.1",
"npm-run-all": "4.1.5",
"popper.js": "1.16.1",
"postcss": "8.5.3",
"postcss-cli": "11.0.0",
"prettier": "3.5.2",
"stylelint": "16.14.1",
"stylelint-config-standard-scss": "14.0.0"
},
"engines": {
"node": ">=20"
},
"volta": {
"node": "20.18.3"
},
"hugo-bin": {
"buildTags": "extended"
}
}