portails/package.json

67 lines
2.0 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-04-02 20:03:28 +02:00
"version": "0.2.3",
"hugo-bin": {
"buildTags": "extended"
},
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": {
2020-12-03 16:07:04 +01:00
"init": "rimraf .git && git init -b main",
"create": "hugo new",
"prestart": "npm run clean",
2021-04-02 19:45:05 +02:00
"start": "hugo server --bind=0.0.0.0 --disableFastRender",
"prebuild": "npm run clean",
2021-03-17 08:44:18 +01:00
"build": "hugo --gc --minify && npm run build:functions",
2020-04-15 15:48:16 +02:00
"build:functions": "netlify-lambda build assets/lambda",
"build:preview": "npm run build -D -F",
"clean": "rimraf public resources functions",
2020-11-04 08:26:58 +01:00
"lint": "npm run -s lint:scripts && npm run -s lint:styles && npm run -s lint:markdown",
2020-04-15 15:48:16 +02:00
"lint:scripts": "eslint assets/js assets/lambda config",
"lint:styles": "stylelint \"assets/scss/**/*.{css,sass,scss,sss,less}\"",
2020-11-04 08:26:58 +01:00
"lint:markdown": "markdownlint *.md content/**/*.md",
2020-11-04 09:27:49 +01:00
"release": "standard-version",
2021-03-01 10:40:23 +01:00
"release:dry-run": "standard-version --dry-run",
"server": "hugo server",
"test": "npm run -s lint",
2021-01-25 08:51:54 +01:00
"env": "env",
"precheck": "npm version",
2021-03-16 15:14:45 +01:00
"check": "hugo version",
"copy:katex-fonts": "shx cp ./node_modules/katex/dist/fonts/* ./static/fonts/"
2020-04-15 15:48:16 +02:00
},
"devDependencies": {
2021-06-14 15:58:20 +02:00
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@fullhuman/postcss-purgecss": "^4.0",
2021-06-14 15:58:20 +02:00
"autoprefixer": "^10.2.6",
2021-05-10 18:43:42 +02:00
"bootstrap": "^5.0",
"clipboard": "^2.0",
2021-06-21 12:00:20 +02:00
"eslint": "^7.29",
"flexsearch": "^0.6",
2021-06-15 16:27:38 +02:00
"highlight.js": "^11.0",
2021-05-10 18:43:42 +02:00
"hugo-bin": "^0.71",
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-03-04 14:46:16 +01:00
"markdownlint-cli": "^0.27",
2021-06-14 15:58:20 +02:00
"mermaid": "^8.10.2",
"netlify-lambda": "^2.0.9",
2021-06-17 11:31:32 +02:00
"postcss": "^8.3.5",
2020-11-20 13:43:44 +01:00
"postcss-cli": "^8.3",
2020-04-15 15:48:16 +02:00
"purgecss-whitelister": "^2.4",
"rimraf": "^3.0",
2021-03-16 15:14:45 +01:00
"shx": "^0.3.3",
2021-04-19 12:24:40 +02:00
"standard-version": "^9.2",
2021-05-10 18:43:42 +02:00
"stylelint": "^13.13",
"stylelint-config-standard": "^22.0"
2020-12-03 16:07:04 +01:00
}
2020-04-15 15:48:16 +02:00
}