mirror of
https://github.com/umputun/reproxy.git
synced 2024-11-23 09:27:22 +03:00
ab9c5864bb
by @akellbl4 * make cool site for reproxy * remove meta tags with images * fix dark theme * flix styles for sidebar nav * add scroll in sidebar * fix dark theme * fix markdown * remove package lock * add package lock to ignore * add update date and edit button * add build command * move target to public * add build * use gitignore * add logos * Changes - add meta - add close button * add style for code tag * fix favicon color in safari * add logo styles * update favicon * add classic ico favicon * update touch icon * fix sharing images * fix logo * move data to site data file * add fancy mate glass effect on header * make readme as site base * update logo update logo * add stretching width for the content * add dockerfile * fix dark theme bugs * remove usless props * fix logo * fix node version * replce logo for the site * fix path to logo in readme * add more space on logo in readme * fix logo size in readme
40 lines
1.1 KiB
JSON
40 lines
1.1 KiB
JSON
{
|
|
"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"
|
|
}
|
|
}
|