eleventy-base/package.json
2023-10-05 19:23:16 +02:00

22 lines
556 B
JSON

{
"name": "eleventy-base",
"version": "1.0.0",
"description": "A template for creating 11ty websites.",
"main": "index.js",
"author": "Sofía Aritz",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"markdown-it": "^13.0.2",
"markdown-it-anchor": "^8.6.7"
},
"scripts": {
"build": "npx @11ty/eleventy",
"serve": "npx @11ty/eleventy --serve",
"tree": "tree --gitignore",
"fresh-build": "rm -rf _site/ && yarn build",
"deploy": "cd .scripts/ && ./deploy.sh"
}
}