generated from gethinode/template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.54 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.54 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@gethinode/docs",
"version": "0.0.0-semantically-released",
"description": "The source for https://gethinode.com",
"main": "index.js",
"scripts": {
"prestart": "npm run -s mod:vendor",
"start": "hugo server --bind=0.0.0.0 --disableFastRender",
"start:prod": "hugo server --bind=0.0.0.0 --disableFastRender --printI18nWarnings -e production --minify",
"prebuild": "npm run clean:public && npm run -s mod:vendor",
"build": "hugo --gc --minify",
"build:cache": "npm run -s prebuild && hugo --gc --minify -e ci",
"build:debug": "npm run -s mod:update && hugo -e debug --debug",
"build:headers": "hugo --renderSegments headers -d prebuild && cpy prebuild/netlify.toml ./ --flat && cpy prebuild/server.toml config/_default/ --flat",
"build:preview": "npm run build -D -F",
"clean:public": "rimraf public",
"clean:install": "rimraf package-lock.json node_modules",
"lint": "npm run -s lint:markdown",
"lint:scripts": "eslint assets/js",
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
"lint:markdown-fix": "markdownlint-cli2-fix \"*.md\" \"content/**/*.md\"",
"mod:clean": "hugo mod clean",
"mod:update": "rimraf _vendor && hugo mod get -u ./... && hugo mod get -u && npm run -s mod:vendor && npm run -s mod:tidy",
"mod:tidy": "hugo mod tidy",
"mod:vendor": "rimraf _vendor && hugo mod vendor",
"test": "npm run -s lint",
"env": "hugo env",
"precheck": "npm version",
"check": "hugo version",
"prepare": "node .husky/install.mjs",
"upgrade": "npx npm-check-updates -u && npm run -s mod:update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gethinode/docs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/gethinode/hinode/issues"
},
"homepage": "https://gethinode.com",
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@fullhuman/postcss-purgecss": "^8.0.0",
"@gethinode/netlify-plugin-dartsass": "^0.3.0",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"autoprefixer": "^10.4.27",
"commitizen": "^4.3.1",
"cpy-cli": "^7.0.0",
"cssnano": "^7.1.2",
"cssnano-preset-advanced": "^7.0.10",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.2",
"hugo-bin": "^0.149.2",
"husky": "^9.1.7",
"markdownlint-cli2": "^0.21.0",
"neostandard": "^0.13.0",
"netlify-plugin-hugo-cache-resources": "^0.2.1",
"postcss-cli": "^11.0.1",
"purgecss-whitelister": "^2.4.0",
"rimraf": "^6.1.3",
"semantic-release": "^25.0.3",
"stylelint": "^16.26.1",
"stylelint-config-standard-scss": "^16.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"hugo-bin": {
"buildTags": "extended"
},
"release": {
"branches": "main",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/exec",
{
"prepare": "npm install"
}
],
[
"@semantic-release/git",
{
"assets": [
"dist",
"package.json",
"package-lock.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}