-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.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
{
"name": "hugo-template",
"version": "1.1.0",
"description": "Template project for sites built with Hugo, Decap, and Netlify",
"main": "index.js",
"scripts": {
"dev": "hugo server",
"build": "hugo",
"lint": "npx htmlhint 'layouts/**/*.html' & npx eslint . & npx stylelint \"assets/styles/*.scss\"",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poslovnimediji/hugo-template.git"
},
"author": "PM, poslovni mediji",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/poslovnimediji/hugo-template/issues"
},
"homepage": "https://github.com/poslovnimediji/hugo-template#readme",
"devDependencies": {
"eslint": "^9.13.0",
"globals": "^15.11.0",
"htmlhint": "^1.1.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"neostandard": "^0.11.7",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^6.0.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0"
},
"lint-staged": {
"*.js": "eslint",
"*.scss": "stylelint",
"*.css": "stylelint",
"*.html": "htmlhint"
}
}