-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.45 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
{
"name": "eleventy-base-blog",
"version": "5.0.0",
"description": "A starter repository for a blog web site using the Eleventy static site generator.",
"scripts": {
"start": "npx @11ty/eleventy --serve",
"build": "NODE_ENV=production npx @11ty/eleventy",
"wrangler": "npx wrangler pages dev _site",
"dev": "npx @11ty/eleventy --serve",
"watch": "npx @11ty/eleventy --watch",
"debug": "DEBUG=* npx @11ty/eleventy",
"log": "npx wrangler pages deployment tail"
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-base-blog.git"
},
"author": {
"name": "Sia Karamalegos",
"email": "[email protected]",
"url": "https://sia.codes/"
},
"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": "^0.12.1",
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@11ty/eleventy-plugin-syntaxhighlight": "^2.0.3",
"clean-css": "^5.1.3",
"luxon": "^1.25.0",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.3.0",
"node-fetch": "^2.6.1",
"terser": "^5.7.1",
"wrangler": "^3.67.1"
},
"dependencies": {
"@11ty/eleventy-fetch": "^4.0.1",
"lodash": "^4.17.21",
"normalize-url": "^6.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resend": "^3.5.0",
"rss-parser": "^3.13.0"
}
}