Files
remark42/site/package.json
T
dfcf728e6f Site (#1049)
by @akellbl4 

* create infrastructure for site

* wip

* fix docker build and add readme

* add docker-compose as a build and a run method

* rename compose file yaml -> yml

* add `src` as volume for watching changes

* update configs

* update README

* add padding at the end of the pages

* move demo settings in config

* fetch latest release from github

* update docs navigation

- add sections
- redirect from root of the section to first doc
- nice styles for navigation
- add brand colors

* cache github data from first load

* add redirects and fix link to docs

* fix docs nav styles

* add installation page placeholder

* fix demo

* add 404

* add dark theme, add theme switcher, remove unused files

* fix dark theme on main page

* fix dark theme background

* fix node version

* change installation docs

* add note block

* minor fixes

* add code highlighting styles

* fixes

* fixes

* mobile navigation, fix code highlighting colors

* fix dev server

* fix fetching error

* fix path to edit

Co-authored-by: Pavel Mineev <pavel@mineev.me>
Co-authored-by: Dmitry Verkhoturov <paskal.07@gmail.com>
2021-06-13 18:44:49 -05:00

44 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": ">=14.15",
"yarn": ">=1.22"
},
"scripts": {
"dev": "npm-run-all clean -p dev:*",
"dev:11ty": "eleventy --serve --watch --quiet",
"dev:css": "postcss ./src/styles.css -o .tmp/style.css -w",
"build": "cross-env NODE_ENV=production run-s clean build:* --print-label",
"build:css": "postcss ./src/styles.css -o .tmp/style.css",
"build:11ty": "eleventy",
"clean": "rm -rf .tmp/* build/*"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-navigation": "^0.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.1",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.2.6",
"cross-env": "^7.0.3",
"date-fns": "^2.22.1",
"eleventy-plugin-toc": "^1.1.0",
"eslint": "^7.28.0",
"html-minifier": "^4.0.0",
"markdown-it": "^12.0.6",
"markdown-it-anchor": "^7.1.0",
"markdown-it-container": "^3.0.0",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.2",
"postcss-cli": "^8.3.1",
"prettier": "^2.3.1",
"tailwindcss": "^2.1.4"
}
}