portails/package.json

66 lines
2.1 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",
2021-07-05 12:26:13 +02:00
"version": "0.3.3",
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",
"create": "exec-bin bin/hugo/hugo new",
"prestart": "npm run clean",
2021-07-05 11:25:26 +02:00
"start": "exec-bin bin/hugo/hugo server --bind=0.0.0.0 --disableFastRender",
"prebuild": "npm run clean",
"build": "exec-bin 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",
"clean:install": "shx rm -rf package-lock.json bin 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}\"",
2021-07-05 02:36:06 +02:00
"lint:markdown": "markdownlint \"*.md\" \"content/**/*.md\"",
"server": "exec-bin bin/hugo/hugo server",
"test": "npm run -s lint",
2021-01-25 08:51:54 +01:00
"env": "env",
"precheck": "npm version",
"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"
2020-04-15 15:48:16 +02:00
},
"devDependencies": {
"@babel/cli": "^7.14",
2021-08-05 09:23:09 +02:00
"@babel/core": "^7.15",
"@babel/preset-env": "^7.15",
"@fullhuman/postcss-purgecss": "^4.0",
"auto-changelog": "^2.3.0",
2021-08-05 09:23:09 +02:00
"autoprefixer": "^10.3",
"bootstrap": "^5.1",
"clipboard": "^2.0",
2021-08-05 09:23:09 +02:00
"eslint": "^7.32",
"exec-bin": "^1.0.0",
2021-08-05 09:23:09 +02:00
"hugo-installer": "^3.1",
"flexsearch": "^0.7.21",
"highlight.js": "^11.2",
2020-11-04 08:26:58 +01:00
"instant.page": "^5.1",
2021-04-19 12:24:40 +02:00
"katex": "^0.13",
2021-01-04 17:15:06 +01:00
"lazysizes": "^5.3",
2021-08-05 09:23:09 +02:00
"markdownlint-cli": "^0.28",
2021-06-30 15:16:45 +02:00
"mermaid": "^8.11",
"postcss": "^8.3",
2020-11-20 13:43:44 +01:00
"postcss-cli": "^8.3",
2020-04-15 15:48:16 +02:00
"purgecss-whitelister": "^2.4",
2021-03-16 15:14:45 +01:00
"shx": "^0.3.3",
2021-05-10 18:43:42 +02:00
"stylelint": "^13.13",
"stylelint-config-standard": "^22.0"
},
"otherDependencies": {
2021-08-05 09:23:09 +02:00
"hugo": "0.87.0"
2020-12-03 16:07:04 +01:00
}
2020-04-15 15:48:16 +02:00
}