deps: bump versions to latest

This commit is contained in:
Henk Verlinde 2022-02-04 14:55:57 +01:00
parent 477ed68633
commit fe5bf729e6
7 changed files with 2359 additions and 3946 deletions

11
.markdownlint-cli2.jsonc Normal file
View File

@ -0,0 +1,11 @@
{
"config": {
"default": true,
"MD013": false,
"MD024": false,
"MD026": false,
"MD033": false,
"MD034": false
},
"ignores": ["node_modules", "CHANGELOG.md", "README.md"]
}

View File

@ -1,10 +0,0 @@
{
"comment": "Hyas rules",
"default": true,
"line_length": false,
"no-inline-html": false,
"no-trailing-punctuation": false,
"no-duplicate-heading": false,
"no-bare-urls": false
}

View File

@ -1,3 +0,0 @@
node_modules
CHANGELOG.md
README.md

View File

@ -1,8 +1,22 @@
{ {
"extends": "stylelint-config-standard", "extends": "stylelint-config-standard-scss",
"rules": { "rules": {
"no-empty-source": null, "no-empty-source": null,
"string-quotes": "double", "string-quotes": "double",
"scss/comment-no-empty": null,
"max-line-length": null,
"scss/at-extend-no-missing-placeholder": null,
"scss/dollar-variable-colon-space-after": null,
"scss/dollar-variable-empty-line-before": null,
"color-function-notation": null,
"alpha-value-notation": null,
"selector-id-pattern": null,
"selector-class-pattern": null,
"scss/no-global-function-names": null,
"number-max-precision": null,
"hue-degree-notation": null,
"value-no-vendor-prefix": null,
"property-no-vendor-prefix": null,
"at-rule-no-unknown": [ "at-rule-no-unknown": [
true, true,
{ {

View File

@ -3,8 +3,8 @@
functions = "functions" functions = "functions"
[build.environment] [build.environment]
NODE_VERSION = "16.9.1" NODE_VERSION = "16.13.1"
NPM_VERSION = "7.21.1" NPM_VERSION = "8.1.2"
[context.production] [context.production]
command = "npm run build" command = "npm run build"

6222
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{ {
"name": "doks-child-theme", "name": "doks-child-theme",
"description": "Doks child theme", "description": "Doks child theme",
"version": "0.3.5", "version": "0.4.0",
"browserslist": [ "browserslist": [
"defaults" "defaults"
], ],
@ -23,7 +23,8 @@
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown", "lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
"lint:scripts": "eslint assets/js config functions", "lint:scripts": "eslint assets/js config functions",
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"", "lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
"lint:markdown": "markdownlint \"*.md\" \"content/**/*.md\"", "lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
"lint:markdown-fix": "markdownlint-cli2-fix \"*.md\" \"content/**/*.md\"",
"server": "exec-bin node_modules/.bin/hugo/hugo server", "server": "exec-bin node_modules/.bin/hugo/hugo server",
"test": "npm run -s lint", "test": "npm run -s lint",
"env": "env", "env": "env",
@ -34,33 +35,33 @@
"version": "auto-changelog -p && git add CHANGELOG.md" "version": "auto-changelog -p && git add CHANGELOG.md"
}, },
"devDependencies": { "devDependencies": {
"@babel/cli": "^7.15", "@babel/cli": "^7.17",
"@babel/core": "^7.15", "@babel/core": "^7.17",
"@babel/preset-env": "^7.15", "@babel/preset-env": "^7.16",
"@fullhuman/postcss-purgecss": "^4.0", "@fullhuman/postcss-purgecss": "^4.1",
"@hyas/doks": "^0.3", "@hyas/doks": "^0.4",
"auto-changelog": "^2.3.0", "auto-changelog": "^2.4.0",
"autoprefixer": "^10.3", "autoprefixer": "^10.4",
"bootstrap": "^5.1", "bootstrap": "^5.1",
"clipboard": "^2.0", "clipboard": "^2.0",
"eslint": "^7.32", "eslint": "^8.8",
"exec-bin": "^1.0.0", "exec-bin": "^1.0.0",
"hugo-installer": "^3.1", "hugo-installer": "^3.1",
"flexsearch": "^0.7.21", "flexsearch": "^0.7.21",
"highlight.js": "^11.2", "highlight.js": "^11.4",
"instant.page": "^5.1", "instant.page": "^5.1",
"katex": "^0.13", "katex": "^0.15",
"lazysizes": "^5.3", "lazysizes": "^5.3",
"markdownlint-cli": "^0.29", "markdownlint-cli2": "^0.4.0",
"mermaid": "^8.13", "mermaid": "^8.13",
"postcss": "^8.3", "postcss": "^8.4",
"postcss-cli": "^9.0", "postcss-cli": "^9.1",
"purgecss-whitelister": "^2.4", "purgecss-whitelister": "^2.4",
"shx": "^0.3.3", "shx": "^0.3",
"stylelint": "^13.13", "stylelint": "^14.3",
"stylelint-config-standard": "^22.0" "stylelint-config-standard-scss": "^3.0"
}, },
"otherDependencies": { "otherDependencies": {
"hugo": "0.88.1" "hugo": "0.92.1"
} }
} }