-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.12 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
{
"name": "j0k3r.net",
"version": "1.0.0",
"description": "Blog based the starter repository using the Eleventy site generator.",
"type": "module",
"scripts": {
"build": "npx @11ty/eleventy",
"start": "npx @11ty/eleventy --serve --quiet",
"debug": "cross-env DEBUG=Eleventy* npx @11ty/eleventy",
"benchmark": "cross-env DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"lint": "biome check"
},
"repository": {
"type": "git",
"url": "git://github.com/j0k3r/blog.git"
},
"author": {
"name": "Jeremy Benoist",
"url": "https://www.j0k3r.net/"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/j0k3r/blog#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^6.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.3",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@biomejs/biome": "1.9.4",
"cross-env": "^7.0.3",
"dayjs": "^1.11.13",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.1"
},
"dependencies": {
"netlify-plugin-cache": "^1.0.3"
}
}