Added package.json

This commit is contained in:
Claudia Reynders 2022-04-24 09:52:46 +02:00
parent 5d1b4d5693
commit 5be3678c17
1 changed files with 28 additions and 0 deletions

28
package.json Normal file
View File

@ -0,0 +1,28 @@
{
"name": "eleventy-not-so-minimal-blog-starter",
"version": "1.0.0",
"description": "A not so minimal starter for building a website + blog using the Eleventy static site generator.",
"main": "index.njk",
"scripts": {
"build": "npx eleventy",
"watch": "npx eleventy --watch",
"serve": "npx eleventy --serve",
"debug": "DEBUG=* npx eleventy"
},
"author": {
"name": "Claudia Reynders",
"email": "hello-claudia@mangamaui.com",
"url": "https://mangamaui.com"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-img": "^2.0.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"luxon": "^2.3.2",
"npm-run-all": "^4.1.5",
"sass": "^1.50.1",
"svg-icon-sprite": "^1.1.1"
}
}