This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/package.json

59 lines
1.8 KiB
JSON

{
"name": "coryd.dev",
"version": "1.4.0",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "node server.js",
"start:eleventy": "eleventy --serve",
"start:eleventy:quick": "eleventy --serve --incremental --ignore-initial",
"build": "ELEVENTY_PRODUCTION=true eleventy",
"update:deps": "npm upgrade && ncu",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
"clean": "rimraf _site",
"build:worker": "node scripts/worker-build.mjs $WORKER_NAME",
"deploy:worker": "wrangler deploy --env production --config workers/$npm_config_worker/wrangler.toml"
},
"keywords": [
"11ty",
"Eleventy",
"Web components",
"Blog"
],
"author": "Cory Dransfeldt",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.5.0",
"@cdransf/select-pagination": "^1.3.1",
"@cdransf/theme-toggle": "^2.0.0",
"@daviddarnes/mastodon-post": "^1.3.0",
"http-proxy-middleware": "3.0.3",
"minisearch": "^7.1.0",
"youtube-video-element": "^1.1.6"
},
"devDependencies": {
"@11ty/eleventy": "v3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-vite": "5.0.0",
"@cdransf/eleventy-plugin-tabler-icons": "^2.0.3",
"@supabase/supabase-js": "^2.45.5",
"dotenv-flow": "^4.1.0",
"express": "4.21.1",
"fast-xml-parser": "^4.5.0",
"html-to-text": "^9.0.5",
"ics": "^3.8.1",
"linkedom": "0.18.5",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-prism": "^2.3.0",
"rimraf": "^6.0.1",
"slugify": "^1.6.6",
"truncate-html": "^1.1.2",
"vite-plugin-minify": "2.0.0"
}
}