-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 752 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 752 Bytes
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
{
"devDependencies": {
"autoprefixer": "^10.4.16",
"hugo-extended": "^0.119.0",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"prettier": "^3.0.3",
"prettier-plugin-go-template": "^0.0.15",
"stylelint": "^15.11.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^11.0.0"
},
"scripts": {
"fmt": "prettier -w .",
"fmt-check": "prettier --check .",
"lint": "stylelint **/*.scss",
"dev": "hugo server --source exampleSite/ --themesDir ../..",
"build": "hugo --source exampleSite/ --themesDir ../..",
"build-drafts": "hugo -D"
},
"stylelint": {
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
]
}
}