-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.67 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "eleventy-base-blog",
"version": "6.0.0",
"description": "A starter repository for a blog web site using the Eleventy static site generator.",
"scripts": {
"start": "npm-run-all build:sass --parallel watch:*",
"watch:sass": "sass --watch src/css/styles:_site/css/styles",
"watch:eleventy": "cross-env ELEVENTY_ENV=dev eleventy --serve",
"build:eleventy": "cross-env ELEVENTY_ENV=prod eleventy",
"build:sass": "sass src/css/styles:_site/css/styles",
"build": "npm-run-all build:*"
},
"author": {
"name": "Yaki Kimhi",
"email": "[email protected]",
"url": "https://yakikim.github.io/"
},
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-img": "^1.1.0",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.2.2",
"cross-env": "^7.0.3",
"elasticlunr": "^0.9.5",
"eleventy-plugin-reading-time": "^0.0.1",
"html-to-text": "^8.1.0",
"luxon": "^2.3.0",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"markdown-it-attrs": "^4.1.3",
"markdown-it-footnote": "^3.0.3",
"npm-run-all": "^4.1.5",
"sass": "^1.49.9",
"title-case": "^3.0.3"
},
"dependencies": {
"@azure/storage-blob": "^12.8.0",
"@code-blocks/eleventy-plugin": "^0.1.8",
"@code-blocks/prism": "^0.1.8",
"@code-blocks/tables": "^0.1.8",
"@octokit/core": "^3.5.1",
"@sindresorhus/slugify": "^1.1.0",
"clean-css": "^5.3.0",
"dotenv": "^10.0.0",
"gray-matter": "^4.0.3",
"markdown-it": "^12.3.2",
"markdown-it-attrs": "^4.1.3",
"markdown-it-footnote": "^3.0.3"
}
}