Files
remark42/site/package.json
T
Dmitry VerkhoturovandUmputun 29627f4bf0 Raise site resolution floors to clear remaining advisories
Both floors are bounded on the upper side, as an open-ended resolution
lets yarn cross a major version.
2026-08-19 03:39:33 -05:00

52 lines
1.6 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.2",
"@tailwindcss/typography": "^0.5.20",
"cross-env": "^10.1.0",
"date-fns": "^4.4.0",
"markdown-it": "^14.2.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-container": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.9.4",
"tailwindcss": "^3.4.15",
"html-minifier-terser": "^7.2.0"
},
"resolutions": {
"cross-spawn": ">=7.0.6",
"minimatch": ">=3.1.4",
"shell-quote": ">=1.8.4",
"brace-expansion": ">=1.1.12",
"glob": ">=10.5.0 <11.0.0",
"liquidjs": ">=10.26.0",
"linkify-it": ">=5.0.2 <6.0.0",
"ws": ">=8.21.0",
"postcss": ">=8.5.23 <9.0.0",
"yaml": ">=2.8.3",
"markdown-it": ">=14.2.0"
}
}