portails/package.json

72 lines
2.4 KiB
JSON
Raw Normal View History

2020-04-15 15:48:16 +02:00
{
2021-03-18 09:56:39 +01:00
"name": "@hyas/doks",
"description": "Doks theme",
2022-07-09 08:26:27 +02:00
"version": "0.5.0",
2022-05-17 13:58:27 +02:00
"engines": {
2022-07-09 08:26:27 +02:00
"node": ">=16.16.0"
2022-06-21 16:52:09 +02:00
},
2020-04-15 15:48:16 +02:00
"browserslist": [
"defaults"
],
"repository": "https://github.com/h-enk/doks",
"license": "MIT",
"publishConfig": {
"access": "public"
},
2020-04-15 15:48:16 +02:00
"scripts": {
"init": "shx rm -rf .git && git init -b main",
2021-09-03 13:42:43 +02:00
"create": "exec-bin node_modules/.bin/hugo/hugo new",
"prestart": "npm run clean",
2021-09-03 13:42:43 +02:00
"start": "exec-bin node_modules/.bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender",
"prebuild": "npm run clean",
2021-09-03 13:42:43 +02:00
"build": "exec-bin node_modules/.bin/hugo/hugo --gc --minify",
2020-04-15 15:48:16 +02:00
"build:preview": "npm run build -D -F",
"clean": "shx rm -rf public resources",
2021-09-03 13:42:43 +02:00
"clean:install": "shx rm -rf package-lock.json node_modules ",
2020-11-04 08:26:58 +01:00
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
"lint:scripts": "eslint assets/js config functions",
2020-04-15 15:48:16 +02:00
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
"lint:markdown": "markdownlint-cli2 \"*.md\" \"content/**/*.md\"",
"lint:markdown-fix": "markdownlint-cli2-fix \"*.md\" \"content/**/*.md\"",
2021-09-03 13:42:43 +02:00
"server": "exec-bin node_modules/.bin/hugo/hugo server",
"test": "npm run -s lint",
2021-01-25 08:51:54 +01:00
"env": "env",
"precheck": "npm version",
2021-09-03 13:42:43 +02:00
"check": "exec-bin node_modules/.bin/hugo/hugo version",
"copy:katex-fonts": "shx cp ./node_modules/katex/dist/fonts/* ./static/fonts/",
2021-09-03 13:42:43 +02:00
"postinstall": "hugo-installer --version otherDependencies.hugo --extended --destination node_modules/.bin/hugo",
"version": "auto-changelog -p && git add CHANGELOG.md"
2020-04-15 15:48:16 +02:00
},
"devDependencies": {
2022-07-01 14:45:50 +02:00
"@babel/cli": "^7.18",
2022-06-21 16:52:09 +02:00
"@babel/core": "^7.18",
"@babel/preset-env": "^7.18",
2022-01-14 09:27:54 +01:00
"@fullhuman/postcss-purgecss": "^4.1",
"@hyas/images": "^0.2.2",
"auto-changelog": "^2.4",
2022-01-14 09:27:54 +01:00
"autoprefixer": "^10.4",
2022-07-01 14:50:44 +02:00
"bootstrap": "^5.2.0-beta1",
"clipboard": "^2.0",
2022-07-05 09:07:50 +02:00
"eslint": "^8.19",
"exec-bin": "^1.0.0",
2021-08-05 09:23:09 +02:00
"flexsearch": "^0.7.21",
2022-03-25 11:29:16 +01:00
"highlight.js": "^11.5",
"hugo-installer": ">=4.0.1",
2020-11-04 08:26:58 +01:00
"instant.page": "^5.1",
2022-06-21 16:52:09 +02:00
"katex": "^0.16",
2021-01-04 17:15:06 +01:00
"lazysizes": "^5.3",
"markdownlint-cli2": "^0.4.0",
2022-06-21 16:52:09 +02:00
"netlify-plugin-submit-sitemap": "^0.4.0",
2022-01-26 15:08:36 +01:00
"node-fetch": "^3.2",
2022-01-14 09:27:54 +01:00
"postcss": "^8.4",
2022-07-01 14:45:50 +02:00
"postcss-cli": "^10.0",
2020-04-15 15:48:16 +02:00
"purgecss-whitelister": "^2.4",
2022-01-14 09:27:54 +01:00
"shx": "^0.3.4",
2022-06-21 16:52:09 +02:00
"stylelint": "^14.9",
"stylelint-config-standard-scss": "^4.0"
},
"otherDependencies": {
"hugo": "0.107.0"
2020-12-03 16:07:04 +01:00
}
2020-04-15 15:48:16 +02:00
}