![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) from 17.4.4 to 17.6.0. - [Release notes](https://github.com/conventional-changelog/commitlint/releases) - [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md) - [Commits](https://github.com/conventional-changelog/commitlint/commits/v17.6.0/@commitlint/config-conventional) --- updated-dependencies: - dependency-name: "@commitlint/config-conventional" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
69 lines
2.4 KiB
JSON
69 lines
2.4 KiB
JSON
{
|
|
"name": "coryd.dev",
|
|
"version": "1.0.0",
|
|
"description": "The source for my personal site, blog and portfolio. Build using 11ty and hosted on Vercel.",
|
|
"main": "index.html",
|
|
"scripts": {
|
|
"start": "eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
|
|
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"build": "rm -rf .cache && ELEVENTY_PRODUCTION=true eleventy && NODE_ENV=production npx tailwindcss -i ./tailwind.css -c ./tailwind.config.js -o _site/assets/styles/tailwind.css",
|
|
"prepare": "husky install && touch ./.git/COMMIT_EDITMSG"
|
|
},
|
|
"keywords": [],
|
|
"author": "Cory Dransfeldt",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@11ty/eleventy": "^2.0.1",
|
|
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
|
|
"@fontsource/inter": "^4.5.15",
|
|
"eleventy-plugin-heroicons": "^1.1.0",
|
|
"eslint": "^8.38.0",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"postcss": "^8.4.5",
|
|
"prettier": "^2.8.7",
|
|
"prettier-plugin-tailwindcss": "^0.2.7",
|
|
"sanitize-html": "^2.10.0"
|
|
},
|
|
"dependencies": {
|
|
"@11ty/eleventy-activity-feed": "^1.0.9",
|
|
"@11ty/eleventy-fetch": "^4.0.0",
|
|
"@11ty/eleventy-img": "^3.1.0",
|
|
"@commitlint/cli": "^17.5.1",
|
|
"@commitlint/config-conventional": "^17.6.0",
|
|
"@extractus/feed-extractor": "^6.2.1",
|
|
"@sherby/eleventy-plugin-files-minifier": "^1.1.1",
|
|
"@tailwindcss/aspect-ratio": "^0.4.2",
|
|
"@tailwindcss/typography": "^0.5.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
|
"@typescript-eslint/parser": "^5.58.0",
|
|
"autoprefixer": "^10.4.2",
|
|
"dotenv-flow": "^3.2.0",
|
|
"eleventy-plugin-unfurl": "^1.0.0",
|
|
"eslint-plugin-jsx-a11y": "^6.7.1",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.2.1",
|
|
"liquidjs": "^10.7.0",
|
|
"markdown-it": "^13.0.1",
|
|
"markdown-it-anchor": "^8.4.1",
|
|
"markdown-it-footnote": "^3.0.3",
|
|
"markdownlint-cli": "^0.33.0",
|
|
"marked": "^4.3.0",
|
|
"tailwind-dracula": "^1.1.0",
|
|
"tailwindcss": "^3.3.1"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{js,ts,json}": [
|
|
"npx prettier --write",
|
|
"npx eslint --fix"
|
|
],
|
|
"**/*.scss": [
|
|
"npx prettier --write"
|
|
],
|
|
"**/*.{md,mkd,mdwn,mdown,mdtxt,mdtext,markdown}": [
|
|
"npx markdownlint --config ./markdownlint.config.json --fix"
|
|
]
|
|
}
|
|
}
|