-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "industry",
"version": "0.0.1",
"description": "A fast Hugo theme",
"main": "index.js",
"scripts": {
"dev": "cd exampleSite && hugo server",
"build": "cd exampleSite && hugo",
"lint": "npx htmlhint 'layouts/**/*.html' & eslint . & npx stylelint 'assets/styles/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/martinjagodic/hugo-theme-industry.git"
},
"author": "Martin Jagodic",
"license": "MIT",
"bugs": {
"url": "https://github.com/martinjagodic/hugo-theme-industry/issues"
},
"homepage": "https://github.com/martinjagodic/hugo-theme-industry#readme",
"devDependencies": {
"@namics/stylelint-bem": "^7.0.0",
"eslint": "^8.21.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"htmlhint": "^1.1.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"stylelint": "^14.10.0",
"stylelint-config-standard-scss": "^5.0.0"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"autoprefixer": "^10.4.8",
"lozad": "^1.16.0",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0"
},
"lint-staged": {
"*.js": "eslint",
"*.scss": "stylelint",
"*.css": "stylelint",
"*.html": "htmlhint"
}
}