-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.95 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
{
"name": "modus-bootstrap-guide",
"version": "1.0.0",
"private": true,
"description": "static website for Modus Bootstrap v1 built with Hugo",
"homepage": "https://modus-bootstrap.trimble.com",
"bugs": {
"url": "https://github.com/trimble-oss/website-modus-bootstrap.trimble.com/issues/"
},
"repository": {
"type": "git",
"url": "https://github.com/trimble-oss/website-modus-bootstrap.trimble.com.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 config.yml,config-dev.yml && npm run lint-html",
"lint": "npm-run-all lint-css lint-html lint-js",
"lint-css": "stylelint \"assets/css/*.scss\" --fix",
"lint-html": "htmlhint \"layouts/**/*.html\"",
"lint-js": "eslint \"assets/js/*.js\" \"layouts/**/*.html\" --fix",
"lint-links": "npx linkinator ./build --recurse --silent",
"lint-markdown": "npx markdownlint-cli content/**/*.md",
"lint-spell": "npx cspell \"content/**/*.*\" --no-progress",
"pa11y": "npx pa11y https://modus-bootstrap.trimble.com/",
"prettier": "prettier --write \"**/*.{json,scss,yml}\"",
"serve": "npx hugo serve --disableFastRender --navigateToChanged",
"svgo": "npx svgo --folder=\"static/img/headers\""
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "7.0.2",
"@trimble-oss/modus-icons": "1.16.0",
"@trimbleinc/modus-bootstrap": "1.6.4",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-plugin-html": "8.1.2",
"htmlhint": "1.1.4",
"hugo-bin": "0.141.1",
"list.js": "2.3.1",
"npm-run-all": "4.1.5",
"postcss": "8.5.2",
"postcss-cli": "11.0.0",
"prettier": "3.5.1",
"stylelint": "16.14.1",
"stylelint-config-standard-scss": "14.0.0"
},
"engines": {
"node": ">=20.17.0"
},
"volta": {
"node": "20.18.3"
},
"hugo-bin": {
"buildTags": "extended"
}
}