42 lines
1.2 KiB
JSON
42 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:css": "postcss ./src/styles.css -o .tmp/style.css -w",
|
|
"dev:11ty": "eleventy --serve --watch",
|
|
"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.2",
|
|
"@tailwindcss/typography": "^0.4.1",
|
|
"autoprefixer": "^10.3.4",
|
|
"cross-env": "^7.0.3",
|
|
"date-fns": "^2.24.0",
|
|
"eslint": "^7.32.0",
|
|
"html-minifier": "^4.0.0",
|
|
"markdown-it": "^12.2.0",
|
|
"markdown-it-anchor": "^8.3.1",
|
|
"markdown-it-container": "^3.0.0",
|
|
"node-fetch": "^2.6.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss": "^8.3.6",
|
|
"postcss-cli": "^8.3.1",
|
|
"prettier": "^2.4.1",
|
|
"tailwindcss": "^2.2.15"
|
|
}
|
|
}
|