forked from hugo-starters/default-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.66 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
50
{
"name": "default-template",
"version": "1.0.0",
"description": "Default hugo starter template",
"scripts": {
"dev": "hugo server --gc --disableFastRender ",
"dev:preview": "npm run dev -- --buildDrafts --buildFuture",
"build": "hugo -v --gc --minify --cleanDestinationDir",
"renderToDisk": "hugo server --gc --disableFastRender --renderToDisk --cleanDestinationDir ",
"renderToDisk:preview": "npm run renderToDisk -- --buildDrafts --buildFuture ",
"renderToDisk:production": "npm run renderToDisk -- --minify --environment production",
"npm-check": "npx npm-check -u",
"hugo version": "hugo version",
"lint:stylelint": "stylelint --fix \"**/*.{css,sass,scss}\" ",
"lint:prettier": "prettier --write .",
"lint:eslint": "eslint --fix .",
"lint": "npm run lint:stylelint && npm run lint:prettier && npm run lint:eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"npm run format"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/hugo-starters/default-template.git"
},
"author": "Sean Emerson",
"license": "ISC",
"bugs": {
"url": "https://github.com/hugo-starters/default-template/issues"
},
"homepage": "https://github.com/hugo-starters/default-template#readme",
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"prettier-plugin-go-template": "^0.0.13",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^8.0.0"
}
}