-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.2 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.2 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
{
"name": "mhs-11",
"version": "1.0.0",
"description": "MHS blog on eleventy",
"main": "index.js",
"scripts": {
"prestart": "run-s clean",
"start": "run-p develop:*",
"prebuild": "run-p clean",
"build": "run-s build:*",
"build:generate": "run-s 11ty:build css:build og:build",
"fresh": "npm run clean:cache && npm run build",
"build-og": "npm run clean:cache && npm run build",
"build-offline": "npm run build || echo 'Build completed with warnings - some OG images may have failed to generate'",
"develop:generate": "run-p 11ty:watch css:watch og:watch",
"clean": "run-p clean:*",
"clean:dist": "rimraf dist",
"clean:cache": "rimraf .cache _cache",
"11ty:build": "eleventy --quiet --output dist",
"11ty:watch": "eleventy --quiet --serve --output dist",
"css:watch": "postcss src/**/*.css --base src/assets/css --dir dist/css --watch --verbose",
"css:build": "postcss src/**/*.css --base src/assets/css --dir dist/css",
"og:build": "node scripts/fetch-og-images.js",
"og:watch": "node scripts/watch-og-images.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-fetch": "^5.1.0",
"@11ty/eleventy-img": "^6.0.2",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"cssnano": "^7.0.7",
"eleventy-plugin-embed-twitter": "^1.3.4",
"eleventy-plugin-mathjax": "^2.0.4",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-implicit-figures": "^0.12.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-toc-done-right": "^4.2.0",
"node-fetch": "^3.1.1",
"npm-run-all": "^4.1.5",
"nunjucks-date-filter": "^0.1.1",
"postcss": "^8.3.0",
"postcss-cli": "^11.0.1",
"postcss-custom-media": "^12.0.1",
"postcss-import": "^16.1.1",
"postcss-preset-env": "^11.2.1",
"rimraf": "^6.0.1"
},
"devDependencies": {
"node-html-parser": "^7.0.1",
"stylelint": "^17.8.0",
"stylelint-order": "^8.1.1"
}
}