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
|
{
"name": "blog",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"build": "npx @11ty/eleventy",
"serve": "npx @11ty/eleventy --serve"
},
"keywords": [],
"author": "Alexis Hovorka <alexisspacegirl@gmail.com> (https://alexishovorka.com/)",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.0",
"markdown-it": "^12.3.2",
"markdown-it-footnote": "^4.0.0",
"markdown-it-anchor": "^7.1.0",
"markdown-it-emoji": "^2.0.0",
"markdown-it-mark": "^3.0.1"
},
"dependencies": {
"highlight.js": "^11.6.0",
"twemoji": "^14.0.2"
}
}
|