Bumps the npm-modules-updates-for-tests group in /site with 7 updates: | Package | From | To | | --- | --- | --- | | [@11ty/eleventy](https://github.com/11ty/eleventy) | `2.0.1` | `3.0.0` | | [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography) | `0.5.10` | `0.5.15` | | [date-fns](https://github.com/date-fns/date-fns) | `3.3.1` | `4.1.0` | | [markdown-it](https://github.com/markdown-it/markdown-it) | `14.0.0` | `14.1.0` | | [markdown-it-anchor](https://github.com/valeriangalliat/markdown-it-anchor) | `8.6.7` | `9.2.0` | | [prettier](https://github.com/prettier/prettier) | `2.8.8` | `3.3.3` | | [tailwindcss](https://github.com/tailwindlabs/tailwindcss) | `3.4.1` | `3.4.14` | Updates `@11ty/eleventy` from 2.0.1 to 3.0.0 - [Release notes](https://github.com/11ty/eleventy/releases) - [Changelog](https://github.com/11ty/eleventy/blob/main/docs/release-instructions.md) - [Commits](https://github.com/11ty/eleventy/compare/v2.0.1...v3.0.0) Updates `@tailwindcss/typography` from 0.5.10 to 0.5.15 - [Release notes](https://github.com/tailwindlabs/tailwindcss-typography/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/main/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss-typography/compare/v0.5.10...v0.5.15) Updates `date-fns` from 3.3.1 to 4.1.0 - [Release notes](https://github.com/date-fns/date-fns/releases) - [Changelog](https://github.com/date-fns/date-fns/blob/main/CHANGELOG.md) - [Commits](https://github.com/date-fns/date-fns/compare/v3.3.1...v4.1.0) Updates `markdown-it` from 14.0.0 to 14.1.0 - [Changelog](https://github.com/markdown-it/markdown-it/blob/master/CHANGELOG.md) - [Commits](https://github.com/markdown-it/markdown-it/compare/14.0.0...14.1.0) Updates `markdown-it-anchor` from 8.6.7 to 9.2.0 - [Release notes](https://github.com/valeriangalliat/markdown-it-anchor/releases) - [Changelog](https://github.com/valeriangalliat/markdown-it-anchor/blob/master/CHANGELOG.md) - [Commits](https://github.com/valeriangalliat/markdown-it-anchor/compare/v8.6.7...v9.2.0) Updates `prettier` from 2.8.8 to 3.3.3 - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.8.8...3.3.3) Updates `tailwindcss` from 3.4.1 to 3.4.14 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.14/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.1...v3.4.14) --- updated-dependencies: - dependency-name: "@11ty/eleventy" dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-modules-updates-for-tests - dependency-name: "@tailwindcss/typography" dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-modules-updates-for-tests - dependency-name: date-fns dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-modules-updates-for-tests - dependency-name: markdown-it dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-modules-updates-for-tests - dependency-name: markdown-it-anchor dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-modules-updates-for-tests - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-major dependency-group: npm-modules-updates-for-tests - dependency-name: tailwindcss dependency-type: direct:development update-type: version-update:semver-patch dependency-group: npm-modules-updates-for-tests ... Signed-off-by: dependabot[bot] <support@github.com>
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "remark42-site",
|
|
"version": "0.0.0",
|
|
"repository": "https://github.com/umputun/remark42/site",
|
|
"homepage": "https://remark42.com",
|
|
"author": "Pavel Mineev <pavel@mineev.me>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=20.11.1",
|
|
"yarn": ">=1.22"
|
|
},
|
|
"scripts": {
|
|
"start": "npm-run-all dev",
|
|
"dev": "npm-run-all -l clean build:css -p dev:css dev:11ty",
|
|
"dev:css": "tailwindcss -i ./src/styles.css -o .tmp/style.css -w",
|
|
"dev:11ty": "eleventy --serve --watch --quiet",
|
|
"build": "cross-env NODE_ENV=production run-s clean build:css build:11ty --print-label",
|
|
"build:css": "tailwindcss -i ./src/styles.css -o .tmp/style.css",
|
|
"build:11ty": "eleventy",
|
|
"clean": "rm -rf .tmp/* build/*"
|
|
},
|
|
"devDependencies": {
|
|
"@11ty/eleventy": "^3.0.0",
|
|
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
|
|
"@tailwindcss/typography": "^0.5.15",
|
|
"cross-env": "^7.0.3",
|
|
"date-fns": "^4.1.0",
|
|
"html-minifier": "^4.0.0",
|
|
"markdown-it": "^14.0.0",
|
|
"markdown-it-anchor": "^9.2.0",
|
|
"markdown-it-container": "^4.0.0",
|
|
"node-fetch": "^3.3.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^3.3.3",
|
|
"tailwindcss": "^3.4.14"
|
|
}
|
|
}
|