-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 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
42
43
44
45
46
47
48
49
50
{
"name": "exceptionless-website",
"version": "1.0.0",
"description": "Exceptionless website",
"type": "module",
"scripts": {
"build": "npx @11ty/eleventy",
"build-nocolor": "cross-env NODE_DISABLE_COLORS=1 npx @11ty/eleventy",
"start": "npx @11ty/eleventy --serve --quiet",
"dev": "npx @11ty/eleventy --serve --quiet",
"debug": "cross-env DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "cross-env DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "cross-env DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"new-post": "node new_post.js -t"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-navigation": "^1.0.4",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.1",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"commander": "^14.0.0",
"cross-env": "^7.0.3",
"eleventy-plugin-embed-everything": "^1.21.0",
"glob": "^11.0.3",
"luxon": "^3.7.1",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-alerts": "^0.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"markdown-it-bracketed-spans": "^1.0.1",
"markdown-it-footnote": "^4.0.0",
"markdown-it-replace-link": "^1.2.2",
"prismjs": "^1.30.0",
"yaml-front-matter": "^4.1.1",
"zod": "^4.0.10",
"zod-validation-error": "^4.0.1"
},
"dependencies": {
"@zachleat/heading-anchors": "^1.0.3"
}
}