73 lines
2.4 KiB
JSON
73 lines
2.4 KiB
JSON
{
|
|
"name": "eleventy-excellent",
|
|
"version": "1.1.1",
|
|
"engines": {
|
|
"node": ">=16.x.x"
|
|
},
|
|
"description": "Eleventy starter based on the workflow suggested by Andy Bell's buildexcellentwebsit.es.",
|
|
"main": ".eleventy.js",
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"dev:postcss": "postcss src/assets/css/global.css --o dist/assets/css/global.css --watch --verbose",
|
|
"dev:scripts": "esbuild src/assets/scripts/app.js --bundle --watch --outdir=dist/assets",
|
|
"dev:11ty": "eleventy --serve --watch",
|
|
"build:postcss": "NODE_ENV=production postcss src/assets/css/global.css -o dist/assets/css/global.css",
|
|
"build:11ty": "cross-env ELEVENTY_ENV=production eleventy",
|
|
"build:scripts": "esbuild src/assets/scripts/app.js --bundle --minify --outdir=dist/assets --platform=node --tree-shaking=true",
|
|
"start": "run-p dev:*",
|
|
"build": "run-s clean build:*"
|
|
},
|
|
"keywords": [],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/madrilene/eleventy-excellent.git"
|
|
},
|
|
"author": "Lene Saile",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@11ty/eleventy": "^2.0.0-canary.16",
|
|
"@11ty/eleventy-fetch": "^3.0.0",
|
|
"@11ty/eleventy-img": "^2.0.1",
|
|
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
|
|
"tailwindcss": "^3.0.23"
|
|
},
|
|
"devDependencies": {
|
|
"@11ty/eleventy-plugin-rss": "^1.2.0",
|
|
"@netlify/plugin-a11y": "^1.0.0-beta.1",
|
|
"@toycode/markdown-it-class": "^1.2.4",
|
|
"clean-css": "^5.3.1",
|
|
"concurrently": "^7.4.0",
|
|
"cross-env": "^7.0.3",
|
|
"cssnano": "^5.1.7",
|
|
"dayjs": "^1.11.5",
|
|
"dotenv": "^16.0.3",
|
|
"esbuild": "^0.15.10",
|
|
"eslint": "^8.24.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"glob": "^8.0.3",
|
|
"html-minifier": "^4.0.0",
|
|
"lodash": "^4.17.21",
|
|
"markdown-it": "^13.0.1",
|
|
"markdown-it-abbr": "^1.0.4",
|
|
"markdown-it-anchor": "^8.6.5",
|
|
"markdown-it-emoji": "^2.0.2",
|
|
"markdown-it-footnote": "^3.0.3",
|
|
"markdown-it-link-attributes": "^4.0.1",
|
|
"markdown-it-mark": "^3.0.1",
|
|
"markdown-it-prism": "^2.3.0",
|
|
"netlify-plugin-11ty": "^1.1.0",
|
|
"netlify-plugin-cache": "^1.0.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"outdent": "^0.8.0",
|
|
"postcss": "^8.4.8",
|
|
"postcss-cli": "^10.0.0",
|
|
"postcss-import": "^15.0.0",
|
|
"postcss-import-ext-glob": "^2.0.1",
|
|
"postcss-js": "^4.0.0",
|
|
"prettier": "^2.3.2",
|
|
"rimraf": "^3.0.2",
|
|
"sanitize-html": "^2.7.2",
|
|
"slugify": "^1.6.5"
|
|
}
|
|
}
|