1
0
mirror of https://github.com/umputun/reproxy.git synced 2025-02-22 18:42:01 +02:00
reproxy/site/package.json

40 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "reproxy",
"version": "0.0.0",
"repository": "https://github.com/umputun/reproxy/site",
"author": "Pavel Mineev <pavel@mineev.me>",
"license": "MIT",
"private": true,
"engines": {
"node": ">= 14.15"
},
"scripts": {
"build": "cross-env NODE_ENV=production run-s build:* --print-label",
"build:clean": "rm -rf public/*",
"build:css": "postcss src/main.css -o src/includes/main.css",
"build:eleventy": "eleventy",
"dev": "run-p dev:*",
"dev:css": "postcss src/main.css -o public/main.css -w",
"dev:eleventy": "eleventy --serve --watch"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-navigation": "^0.2.0",
"@tailwindcss/typography": "^0.4.0",
"@thedigitalman/eleventy-plugin-toc-a11y": "^2.0.2",
"autoprefixer": "^10.2.5",
"cross-env": "^7.0.3",
"cssnano": "^5.0.1",
"date-fns": "^2.21.0",
"html-minifier": "^4.0.0",
"markdown-it": "^12.0.4",
"markdown-it-anchor": "^7.1.0",
"markdown-it-link-attributes": "^3.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.10",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"tailwindcss": "^2.1.1"
}
}