Files
remark42/site/package.json
T

43 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 clean && npm run dev:css | npm run dev:11ty",
"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-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"
}
}