-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.18 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.18 KB
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
{
"name": "eleventy-base-blog",
"version": "5.0.0",
"description": "A starter repository for a blog web site using the Eleventy static site generator.",
"scripts": {
"build": "NODE_ENV=production npx eleventy",
"start": "netlify dev",
"dev": "NODE_ENV=development npx eleventy --serve",
"watch": "npx eleventy --watch",
"debug": "DEBUG=* npx eleventy"
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-base-blog.git"
},
"author": {
"name": "Sia Karamalegos",
"url": "https://sia.studio/"
},
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/11ty/eleventy-base-blog/issues"
},
"homepage": "https://github.com/11ty/eleventy-base-blog#readme",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"luxon": "^1.25.0",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.3.0",
"netlify-plugin-inline-functions-env": "^1.0.9",
"node-fetch": "^2.6.1",
"stripe": "^8.199.0"
},
"dependencies": {
"@sendgrid/mail": "^7.6.0",
"aws-sdk": "^2.1063.0",
"lodash": "^4.17.20"
}
}