Bumps the npm-modules-updates-for-tests group in /site with 2 updates: [prettier](https://github.com/prettier/prettier) and [tailwindcss](https://github.com/tailwindlabs/tailwindcss). Updates `prettier` from 3.3.3 to 3.4.1 - [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/3.3.3...3.4.1) Updates `tailwindcss` from 3.4.14 to 3.4.15 - [Release notes](https://github.com/tailwindlabs/tailwindcss/releases) - [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/v3.4.15/CHANGELOG.md) - [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v3.4.14...v3.4.15) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor 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>
40 lines
1.2 KiB
JSON
40 lines
1.2 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"
|
|
},
|
|
"packageManager": "yarn@1.22.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": "^2.0.1",
|
|
"@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.4.1",
|
|
"tailwindcss": "^3.4.15"
|
|
}
|
|
}
|