homepage/package.json
Yannik Rödel 00588a516a Update npm depedencies
These are a few major updates with breaking changes and / or
deprecations. In particular:

- 11ty v3 [1]
  - The configuration file has been ESM-ified
  - A few things used by the RSS templates had been deprecated. Those
    have been corrected.
- Sass
  - `transparentize()` -> `color.scale()`
  - Mixed declaration syntax changes [2]

[1]: https://github.com/11ty/eleventy/releases/tag/v3.0.0
[2]: https://sass-lang.com/documentation/breaking-changes/mixed-decls/
2025-06-15 17:49:46 +02:00

29 lines
816 B
JSON

{
"name": "angestoepselt-site",
"version": "0.1.0",
"description": "Angestöpselt Homepage",
"scripts": {
"build:site": "eleventy",
"build:styles": "sass --style=compressed styles/:dist/assets/css/",
"build": "npm run build:site && npm run build:styles",
"dev:site": "eleventy --serve",
"dev:styles": "sass --watch styles/:dist/assets/css/"
},
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "^3.1.1",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-navigation": "^1.0.4",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.1",
"luxon": "^3.6.1",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-attrs": "^4.3.1",
"node-gyp-build": "^4.8.4",
"sass": "^1.89.2"
},
"devDependencies": {
"prettier": "^3.5.3"
}
}