forked from trimble-oss/devguide
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.91 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
{
"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": "https://github.com/trimble-oss/devguide.git"
},
"license": "private",
"author": "Trimble",
"engines": {
"node": ">=16"
},
"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\"",
"lint-html": "htmlhint \"layouts/**/*.html\"",
"lint-js": "eslint \"assets/js/*.js\"",
"lint-links": "npx linkinator ./",
"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",
"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": "^5.0.0",
"@trimbleinc/modus-bootstrap": "^1.5.6",
"autoprefixer": "^10.4.14",
"clipboard": "^2.0.11",
"eslint": "^8.36.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"htmlhint": "^1.1.4",
"hugo-bin": "^0.101.2",
"jquery": "^3.6.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "^2.8.3",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard-scss": "^6.1.0"
},
"hugo-bin": {
"buildTags": "extended"
}
}