mirror of https://github.com/luizdepra/hugo-coder.git

Luiz F. A. de Prá
3 days ago 011adf79ec795af29e06f393c9eb774a4b09cce4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  "name": "hugo-coder",
  "private": true,
  "scripts": {
    "lint:html": "prettier --check \"layouts/**/*.html\" \"exampleSite/**/*.html\"",
    "lint:scss": "stylelint \"assets/scss/**/*.scss\"",
    "lint": "npm run lint:html && npm run lint:scss",
    "format:html": "prettier --write \"layouts/**/*.html\" \"exampleSite/**/*.html\"",
    "format:scss": "stylelint --fix \"assets/scss/**/*.scss\"",
    "format": "npm run format:html && npm run format:scss"
  },
  "devDependencies": {
    "postcss-scss": "^4.0.9",
    "prettier": "^3.3.3",
    "prettier-plugin-go-template": "^0.0.15",
    "stylelint": "^16.5.0",
    "stylelint-config-standard-scss": "^13.0.0",
    "stylelint-scss": "^6.5.0"
  }
}