portails/package.json

71 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-05-17 13:58:27 +02:00
"version": "0.4.3",
"engines": {
"node": ">=16.15.0"
},
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-02-03 08:35:49 +01:00
"@babel/cli": "^7.17",
"@babel/core": "^7.17",
2022-05-17 13:58:27 +02:00
"@babel/preset-env": "^7.17",
2022-01-14 09:27:54 +01:00
"@fullhuman/postcss-purgecss": "^4.1",
"auto-changelog": "^2.4",
2022-01-14 09:27:54 +01:00
"autoprefixer": "^10.4",
2021-08-05 09:23:09 +02:00
"bootstrap": "^5.1",
"clipboard": "^2.0",
2022-05-17 13:58:27 +02:00
"eslint": "^8.15",
"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",
2022-01-14 09:27:54 +01:00
"hugo-installer": "^3.1",
2020-11-04 08:26:58 +01:00
"instant.page": "^5.1",
2022-01-14 09:27:54 +01:00
"katex": "^0.15",
2021-01-04 17:15:06 +01:00
"lazysizes": "^5.3",
"markdownlint-cli2": "^0.4.0",
2022-03-25 11:29:16 +01:00
"netlify-plugin-submit-sitemap": "^0.3.0",
2022-01-26 15:08:36 +01:00
"node-fetch": "^3.2",
2022-01-14 09:27:54 +01:00
"postcss": "^8.4",
"postcss-cli": "^9.1",
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-05-17 13:58:27 +02:00
"stylelint": "^14.8",
2022-01-14 09:27:54 +01:00
"stylelint-config-standard-scss": "^3.0"
},
"otherDependencies": {
2022-05-17 13:58:27 +02:00
"hugo": "0.99.0"
2020-12-03 16:07:04 +01:00
}
2020-04-15 15:48:16 +02:00
}