alchi-book: package.json: eleventy with vite, patch-package

This commit is contained in:
milahu 2021-05-12 21:30:23 +02:00
parent dfaf147eeb
commit f0c068f849

View file

@ -1,35 +1,55 @@
{
"name": "alchi-book",
"version": "0.0.1",
"license": "CC0-1.0",
"private": true,
"description": "",
"scripts": {
"build": "node scripts/inline-eleventy.cli.js",
"build-splitfile": "cross-env NODE_ENV=production eleventy --config=config/eleventy.config.js",
"serve": "cross-env NODE_ENV=production eleventy --serve --config=config/eleventy.config.js",
"dev": "cross-env NODE_ENV=development eleventy --serve --config=config/eleventy.config.js",
"debug": "cross-env DEBUG=* eleventy --config=config/eleventy.config.js",
"build": "cross-env NODE_ENV=production node scripts/npm-run-dev.js",
"build:vite": "vite build",
"build:eleventy": "eleventy --config=config/eleventy.config.js",
"prod": "npm-run-all -s build serve",
"serve": "node scripts/npm-run-serve.js",
"build-inline-FIXME": "node scripts/inline-eleventy.cli.js",
"dev": "node scripts/npm-run-dev.js",
"debug": "node scripts/npm-run-dev.js --debug",
"dev:eleventy": "eleventy --serve --config=config/eleventy.config.js",
"dev:vite": "vite",
"test": "npm-run-all -s test:**",
"test:a:html": "html-validate --config=config/htmlvalidate.config.json src/pages/"
"test:a:html": "html-validate --config=config/htmlvalidate.config.json src/pages/",
"postinstall": "patch-package"
},
"eleventy": {
"config": "config/eleventy.config.js"
},
"license": "CC0-1.0",
"devDependencies": {
"@11ty/eleventy": "*",
"@fontsource/noto-mono": "^4.2.1",
"@fontsource/noto-sans": "^4.2.2",
"app-root-path": "^3.0.0",
"clean-css": "^5.1.1",
"@11ty/eleventy": "github:11ty/eleventy#8a5162785c58864ef65308c0f0d890cade0b407f",
"@fontsource/noto-mono": "*",
"@fontsource/noto-sans": "*",
"@vitejs/plugin-legacy": "*",
"app-root-path": "*",
"clean-css": "*",
"concurrently": "*",
"cross-env": "*",
"eleventy-plugin-transformdom": "^1.0.1",
"fast-glob": "^3.2.5",
"find-free-port-sync": "^1.0.0",
"html-validate": "^4.6.1",
"inliner": "^1.13.1",
"luxon": "^1.25.0",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.2.5",
"node-html-parser": "link:/home/user/src/javascript/node-html-parser/node-html-parser/",
"npm-run": "^5.0.1",
"npm-run-all": "^4.1.5"
"eleventy-plugin-transformdom": "*",
"fast-glob": "*",
"find-free-port-sync": "*",
"html-validate": "*",
"inliner": "^*",
"luxon": "*",
"markdown-it": "*",
"markdown-it-anchor": "*",
"node-html-parser": "github:taoqf/node-fast-html-parser#60ea8fee51f07fbc712b5642a0496f12748eb90f",
"npm-run": "*",
"npm-run-all": "*",
"open": "*",
"sirv-cli": "*",
"vite": "*"
},
"dependencies": {
"diff": "*",
"htmldiff": "github:inkling/htmldiff.js",
"patch-package": "github:milahu/patch-package#pnpm-support-2",
"xregexp": "*"
}
}