fix: linting

This commit is contained in:
Ben Allfree 2023-10-04 09:13:29 -07:00
parent 3551811c51
commit 1ef19d48f4
3 changed files with 54 additions and 53 deletions

View File

@ -4,4 +4,5 @@ mount
.data .data
attic attic
.dockercache .dockercache
build build
_site

View File

@ -7,4 +7,4 @@
"/login/password-reset/confirm", "/login/password-reset/confirm",
"/login/confirm-account", "/login/confirm-account",
"/faq" "/faq"
] ]

View File

@ -1,53 +1,53 @@
{ {
"name": "eleventy-base-blog", "name": "eleventy-base-blog",
"version": "8.0.0", "version": "8.0.0",
"description": "A starter repository for a blog web site using the Eleventy site generator.", "description": "A starter repository for a blog web site using the Eleventy site generator.",
"scripts": { "scripts": {
"build": "npx @11ty/eleventy", "build": "npx @11ty/eleventy",
"build-ghpages": "npx @11ty/eleventy --pathprefix=/eleventy-base-blog/", "build-ghpages": "npx @11ty/eleventy --pathprefix=/eleventy-base-blog/",
"start:tailwind": "tailwind -i ./public/css/index.css -o ./_site/css/index.css --watch", "start:tailwind": "tailwind -i ./public/css/index.css -o ./_site/css/index.css --watch",
"start": "npx @11ty/eleventy --serve --quiet", "start": "npx @11ty/eleventy --serve --quiet",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy", "debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet", "debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy", "benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"postinstall": "cd ../.. && patch-package" "postinstall": "cd ../.. && patch-package"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git://github.com/11ty/eleventy-base-blog.git" "url": "git://github.com/11ty/eleventy-base-blog.git"
}, },
"author": { "author": {
"name": "Zach Leatherman", "name": "Zach Leatherman",
"email": "zachleatherman@gmail.com", "email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/" "url": "https://zachleat.com/"
}, },
"license": "MIT", "license": "MIT",
"engines": { "engines": {
"node": ">=14" "node": ">=14"
}, },
"funding": { "funding": {
"type": "opencollective", "type": "opencollective",
"url": "https://opencollective.com/11ty" "url": "https://opencollective.com/11ty"
}, },
"bugs": { "bugs": {
"url": "https://github.com/11ty/eleventy-base-blog/issues" "url": "https://github.com/11ty/eleventy-base-blog/issues"
}, },
"homepage": "https://github.com/11ty/eleventy-base-blog#readme", "homepage": "https://github.com/11ty/eleventy-base-blog#readme",
"devDependencies": { "devDependencies": {
"@11ty/eleventy": "^2.0.1", "@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "^3.1.0", "@11ty/eleventy-img": "^3.1.0",
"@11ty/eleventy-navigation": "^0.3.5", "@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^1.0.4", "@11ty/eleventy-plugin-bundle": "^1.0.4",
"@11ty/eleventy-plugin-rss": "^1.2.0", "@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0", "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"luxon": "^3.3.0", "luxon": "^3.3.0",
"markdown-it-anchor": "^8.6.7" "markdown-it-anchor": "^8.6.7"
}, },
"dependencies": { "dependencies": {
"@tailwindcss/typography": "^0.5.10", "@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16", "autoprefixer": "^10.4.16",
"daisyui": "^3.7.7", "daisyui": "^3.7.7",
"postcss": "^8.4.30", "postcss": "^8.4.30",
"tailwindcss": "^3.3.3" "tailwindcss": "^3.3.3"
} }
} }