-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.21 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "mefody.dev",
"version": "0.0.1",
"homepage": "/",
"private": true,
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"eleventy-plugin-reading-time": "0.0.1",
"html-minifier": "^4.0.0",
"hyphen": "^1.10.4",
"netlify-plugin-cache": "^1.0.3"
},
"scripts": {
"start": "ELEVENTY_ENV=development eleventy --serve --quiet",
"prod": "pnpm run build:prod && npx live-server _public",
"build": "rm -rf _public && eleventy && gulp build",
"build:prod": "ELEVENTY_ENV=production pnpm run build",
"fix": "biome lint --apply . && stylelint --fix \"src/styles/**/*.css\"",
"lint:css": "stylelint \"src/styles/**/*.css\"",
"lint:editorconfig": "editorconfig-checker",
"lint:js": "biome lint .",
"lint": "pnpm run lint:editorconfig && pnpm run lint:css && pnpm run lint:js",
"prepare": "npx simple-git-hooks",
"preinstall": "npx only-allow pnpm",
"generate-weekly-links": "node _11ty/scripts/weekly-links.js"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@hirusi/eleventy-plugin-safe-external-links": "^0.14.3",
"datauri": "^4.1.0",
"date-fns": "^3.6.0",
"del": "^6.1.1",
"dotenv": "^16.4.5",
"editorconfig-checker": "^5.1.5",
"gulp": "^5.0.0",
"gulp-postcss": "^10.0.0",
"gulp-replace": "^1.1.4",
"gulp-rev": "^9.0.0",
"gulp-rev-rewrite": "^5.0.0",
"image-size": "^1.1.1",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.2",
"lodash": "^4.17.21",
"minify-xml": "^4.4.1",
"netlify-plugin-webmentions": "^1.1.1",
"node-fetch": "^2.7.0",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-lightningcss": "^1.0.0",
"sanitize-html": "^2.13.0",
"sharp": "^0.33.3",
"simple-git-hooks": "^2.11.1",
"stylelint": "^14.16.1",
"stylelint-order": "^6.0.4",
"vinyl-paths": "^3.0.1",
"workbox-build": "^7.1.0"
},
"lint-staged": {
"*": [
"editorconfig-checker"
],
"*.js": [
"biome lint --apply"
],
"*.css": [
"stylelint --fix"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "pnpm run lint"
}
}