-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.75 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.75 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
{
"name": "eleventy-excellent",
"version": "1.7.1",
"description": "Eleventy starter based on the workflow suggested by Andy Bell's buildexcellentwebsit.es.",
"author": "Lene Saile",
"license": "ISC",
"main": ".eleventy.js",
"engines": {
"node": ">=16.x.x"
},
"type": "module",
"scripts": {
"start": "run-p dev:*",
"new:note": "node helpers/newNote.js",
"new:post": "node helpers/newPost.js",
"new:bookmark": "node helpers/newBookmark.js",
"new:like": "node helpers/newLike.js",
"clean": "rimraf dist",
"build": "ELEVENTY_PRODUCTION=true run-s clean build:*",
"generate-images": "run-s clean build:*",
"dev:11ty": "eleventy --serve --watch --port=3000",
"build:11ty": "eleventy",
"build:index": "npx -y pagefind --site dist",
"index:serve": "npx -y pagefind --site dist --serve",
"start-search": "run-s build:11ty index:local",
"start-quick": "eleventy --serve --incremental --ignore-initial",
"start-prod": "ELEVENTY_PRODUCTION=true run-s clean build:* start-quick"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/madrilene/eleventy-excellent.git"
},
"devDependencies": {
"@11ty/eleventy": "3.1.2",
"@11ty/eleventy-fetch": "5.1.1",
"@11ty/eleventy-img": "6.0.4",
"@11ty/eleventy-plugin-bundle": "3.0.7",
"@11ty/eleventy-plugin-inclusive-language": "1.0.3",
"@11ty/eleventy-plugin-rss": "2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "5.0.2",
"@catppuccin/tailwindcss": "1.0.0",
"@inquirer/prompts": "8.1.0",
"@rknightuk/eleventy-plugin-post-graph": "1.0.8",
"@toycode/markdown-it-class": "1.2.4",
"autoprefixer": "10.4.23",
"clean-css": "5.3.3",
"commander": "14.0.2",
"cssnano": "7.1.2",
"dayjs": "1.11.19",
"dotenv": "17.2.3",
"esbuild": "0.27.2",
"html-minifier-terser": "7.2.0",
"inquirer": "13.1.0",
"lodash": "4.17.21",
"markdown-it": "14.1.0",
"markdown-it-abbr": "2.0.0",
"markdown-it-anchor": "9.2.0",
"markdown-it-emoji": "3.0.0",
"markdown-it-footnote": "4.0.0",
"markdown-it-github-alerts": "1.0.0",
"markdown-it-link-attributes": "4.0.1",
"markdown-it-mark": "4.0.0",
"markdown-it-prism": "3.0.1",
"netlify-plugin-cache": "1.0.3",
"npm-run-all2": "8.0.4",
"postcss": "8.5.6",
"postcss-cli": "11.0.1",
"postcss-import": "16.1.1",
"postcss-import-ext-glob": "2.1.1",
"postcss-js": "5.0.3",
"prettier": "3.7.4",
"rimraf": "6.1.2",
"sanitize-html": "2.17.0",
"slugify": "1.6.6",
"tailwindcss": "3.4.19",
"turndown": "7.2.2"
},
"dependencies": {
"@zachleat/pagefind-search": "1.0.3",
"cheerio": "1.1.2",
"html-entities": "2.6.0"
},
"overrides": {
"js-yaml": "4.1.1"
}
}