loi_re/package.json

67 lines
2.2 KiB
JSON
Raw Normal View History

2021-03-18 15:50:09 +01:00
{
"name": "doks-child-theme",
"description": "Doks child theme",
2021-07-05 12:39:56 +02:00
"version": "0.3.3",
2021-03-18 15:50:09 +01:00
"browserslist": [
"defaults"
],
"repository": "https://github.com/h-enk/doks",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
2021-06-25 16:49:17 +02:00
"init": "shx rm -rf .git && git init -b main",
"create": "exec-bin bin/hugo/hugo new",
2021-03-18 15:50:09 +01:00
"prestart": "npm run clean",
2021-06-25 16:49:17 +02:00
"start": "exec-bin bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender",
2021-03-18 15:50:09 +01:00
"prebuild": "npm run clean",
2021-06-25 16:49:17 +02:00
"build": "exec-bin bin/hugo/hugo --gc --minify",
2021-03-18 15:50:09 +01:00
"build:preview": "npm run build -D -F",
2021-06-25 16:49:17 +02:00
"clean": "shx rm -rf public resources",
"clean:install": "shx rm -rf package-lock.json bin node_modules ",
2021-03-18 15:50:09 +01:00
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
2021-06-25 16:49:17 +02:00
"lint:scripts": "eslint assets/js config functions",
2021-03-18 15:50:09 +01:00
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
2021-07-05 12:38:45 +02:00
"lint:markdown": "markdownlint \"*.md\" \"content/**/*.md\"",
2021-06-25 16:49:17 +02:00
"server": "exec-bin bin/hugo/hugo server",
2021-03-18 15:50:09 +01:00
"test": "npm run -s lint",
"env": "env",
"precheck": "npm version",
2021-06-25 16:49:17 +02:00
"check": "exec-bin bin/hugo/hugo version",
"copy:katex-fonts": "shx cp ./node_modules/katex/dist/fonts/* ./static/fonts/",
"postinstall": "hugo-installer --version otherDependencies.hugo --extended",
"version": "auto-changelog -p && git add CHANGELOG.md"
2021-03-18 15:50:09 +01:00
},
"devDependencies": {
2021-06-25 16:49:17 +02:00
"@babel/cli": "^7.14",
"@babel/core": "^7.14",
"@babel/preset-env": "^7.14",
2021-03-18 15:50:09 +01:00
"@fullhuman/postcss-purgecss": "^4.0",
2021-06-25 16:49:17 +02:00
"@hyas/doks": "^0.3",
"auto-changelog": "^2.3.0",
2021-03-18 15:50:09 +01:00
"autoprefixer": "^10.2",
2021-06-25 16:49:17 +02:00
"bootstrap": "^5.0",
2021-03-18 15:50:09 +01:00
"clipboard": "^2.0",
2021-06-25 16:49:17 +02:00
"eslint": "^7.29",
"exec-bin": "^1.0.0",
"hugo-installer": "^3.0.1",
"flexsearch": "^0.7.11",
"highlight.js": "^11.0",
2021-03-18 15:50:09 +01:00
"instant.page": "^5.1",
2021-06-25 16:49:17 +02:00
"katex": "^0.13",
2021-03-18 15:50:09 +01:00
"lazysizes": "^5.3",
"markdownlint-cli": "^0.27",
2021-07-05 12:38:45 +02:00
"mermaid": "^8.11",
2021-06-25 16:49:17 +02:00
"postcss": "^8.3",
2021-03-18 15:50:09 +01:00
"postcss-cli": "^8.3",
"purgecss-whitelister": "^2.4",
"shx": "^0.3.3",
2021-06-25 16:49:17 +02:00
"stylelint": "^13.13",
"stylelint-config-standard": "^22.0"
},
"otherDependencies": {
2021-07-05 12:38:45 +02:00
"hugo": "0.84.4"
2021-03-18 15:50:09 +01:00
}
}