-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
53
54
{
"name": "eleventy-base-blog",
"version": "9.0.0",
"description": "A starter repository for a blog web site using the Eleventy site generator.",
"type": "module",
"scripts": {
"build": "npm run clean; npx @11ty/eleventy",
"clean": "rm -rf ./_site",
"start": "npx @11ty/eleventy --serve --quiet",
"start:glitch": "npx @11ty/eleventy --serve --quiet --config=glitch.eleventy.config.js",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"deploy": "STAGE=staging npm run build; fly deploy -c fly-staging.toml --dns-checks=false",
"deploy:prod": "STAGE=production npm run build; fly deploy -c fly-production.toml --dns-checks=false",
"glitch": "npx playwright test -c _glitch"
},
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-base-blog.git"
},
"author": {
"name": "Zach Leatherman",
"email": "[email protected]",
"url": "https://zachleat.com/"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/11ty"
},
"bugs": {
"url": "https://github.com/11ty/eleventy-base-blog/issues"
},
"homepage": "https://github.com/11ty/eleventy-base-blog#readme",
"devDependencies": {
"@11ty/eleventy": "^3.0.0-alpha.beta.1",
"@11ty/eleventy-img": "5.0.0-beta.9",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"luxon": "^3.4.4",
"markdown-it-anchor": "^8.6.7",
"zod": "^3.23.8",
"zod-validation-error": "^3.3.0"
},
"dependencies": {
"@playwright/test": "^1.45.3",
"sharp": "^0.33.4"
}
}