forked from madrilene/eleventy-excellent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.88 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "eleventy-excellent",
"version": "4.7.0",
"description": "Eleventy starter built around the workflow suggested by Andy Bell's buildexcellentwebsit.es.",
"author": "Lene Saile",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=24.x.x"
},
"scripts": {
"clean": "rimraf dist src/_includes/css src/_includes/scripts",
"clean:og": "rimraf src/assets/og-images",
"favicons": "node ./src/_config/setup/generate-favicons.js",
"colors": "node ./src/_config/setup/create-colors.js",
"screenshots": "node ./src/_config/setup/generate-screenshots.js",
"dev:11ty": "cross-env ELEVENTY_ENV=development eleventy --serve",
"build:11ty": "cross-env ELEVENTY_ENV=production eleventy",
"start": "npm run dev:11ty",
"build": "npm run clean && npm run build:11ty",
"pa11y:build": "npm run clean && cross-env ELEVENTY_ENV=test eleventy",
"pa11y:test": "sleep 3 && pa11y-ci --config ./dist/pa11y.json",
"pa11y:serve": "ELEVENTY_ENV=test eleventy --serve --ignore-initial",
"test:a11y": "npm run pa11y:build && (npm run pa11y:serve &) && sleep 5 && npm run pa11y:test"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/madrilene/eleventy-excellent.git"
},
"overrides": {
"nanoid": "5.1.7"
},
"dependencies": {
"@11ty/eleventy": "^3.1.6",
"@11ty/eleventy-fetch": "^5.1.3",
"@11ty/eleventy-img": "^7.0.0",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@11ty/eleventy-plugin-webc": "^0.11.2",
"@11ty/is-land": "^4.0.1",
"canvas-confetti": "^1.9.4",
"lite-youtube-embed": "^0.3.4",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@toycode/markdown-it-class": "^1.2.4",
"autoprefixer": "^10.5.4",
"colorjs.io": "^0.7.1",
"cross-env": "^10.1.0",
"cssnano": "^8.0.2",
"dayjs": "^1.11.21",
"dotenv": "^17.4.2",
"esbuild": "^0.28.1",
"fast-glob": "^3.3.3",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^5.2.2",
"markdown-it": "^14.3.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.2.1",
"markdown-it-attrs": "^5.0.1",
"markdown-it-emoji": "^3.1.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mark": "^4.0.0",
"markdown-it-prism": "^4.0.0",
"netlify-plugin-cache": "^1.0.3",
"pa11y-ci": "^4.1.1",
"postcss": "^8.5.25",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"postcss-import-ext-glob": "^2.1.1",
"postcss-js": "^5.1.0",
"prettier-plugin-jinja-template": "^2.2.0",
"rimraf": "^6.1.3",
"sanitize-html": "^2.17.6",
"sharp": "^0.35.3",
"sharp-ico": "^0.1.5",
"slugify": "^1.6.9",
"svgo": "^4.0.2"
},
"allowScripts": {
"sharp@0.33.5": true,
"sharp@0.35.3": true,
"esbuild@0.28.1": true,
"puppeteer@24.43.1": true
}
}