forked from poslovnimediji/hugo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.41 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
{
"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 install"
},
"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": "^8.41.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"htmlhint": "^1.1.4",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"stylelint": "^15.10.1",
"stylelint-config-standard-scss": "^9.0.0",
"stylelint-selector-bem-pattern": "^2.1.1"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"autoprefixer": "^10.4.14",
"lozad": "^1.16.0",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0"
},
"lint-staged": {
"*.js": "eslint",
"*.scss": "stylelint",
"*.css": "stylelint",
"*.html": "htmlhint"
}
}