-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
32 lines (32 loc) · 1.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"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.md",
"type": "module",
"scripts": {
"watch:eleventy": "eleventy --serve",
"watch:sass": "sass --watch src/assets/theming:_site/assets",
"build:eleventy": "eleventy",
"build:sass": "sass --no-source-map --style=compressed src/assets/theming:_site/assets",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:*",
"debug": "DEBUG=* npx eleventy"
},
"author": {
"name": "Claudia Reynders",
"url": "https://twitter.com/claudia_rndrs"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-upgrade-help": "^3.0.1",
"luxon": "^3.2.1",
"npm-run-all": "^4.1.5",
"sass": "^1.58.3",
"eleventy-plugin-icons": "^4.5.1"
}
}