portails/package.json

67 lines
2.2 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-10-05 11:36:31 +02:00
"version": "0.3.5",
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}\"",
2021-07-05 02:36:06 +02:00
"lint:markdown": "markdownlint \"*.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": {
2021-09-03 13:42:43 +02:00
"@babel/cli": "^7.15",
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-10-14 17:26:34 +02:00
"eslint": "^8.0",
"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-10-05 08:04:49 +02:00
"markdownlint-cli": "^0.29",
2021-09-03 13:58:04 +02:00
"node-fetch": "^3.0",
2021-09-28 15:54:13 +02:00
"mermaid": "^8.13",
"postcss": "^8.3",
2021-09-28 15:54:13 +02:00
"postcss-cli": "^9.0",
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-09-07 12:19:57 +02:00
"hugo": "0.88.1"
2020-12-03 16:07:04 +01:00
}
2020-04-15 15:48:16 +02:00
}