portails/package.json

61 lines
1.8 KiB
JSON
Raw Normal View History

2020-04-15 15:48:16 +02:00
{
2020-04-15 19:51:06 +02:00
"name": "doks",
2021-03-01 10:50:09 +01:00
"version": "0.1.6",
2020-04-15 15:48:16 +02:00
"private": true,
"hugo-bin": {
"buildTags": "extended"
},
2020-04-15 15:48:16 +02:00
"browserslist": [
"defaults"
],
"scripts": {
2020-12-03 16:07:04 +01:00
"init": "rimraf .git && git init -b main",
"create": "hugo new",
"prestart": "npm run clean",
"start": "hugo server --disableFastRender",
"prebuild": "npm run clean",
2021-03-17 08:42:06 +01:00
"build": "hugo --gc && 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-03-01 10:43:54 +01:00
"@babel/cli": "^7.13",
"@babel/core": "^7.13",
"@babel/preset-env": "^7.13",
"@fullhuman/postcss-purgecss": "^4.0",
2021-01-08 19:30:46 +01:00
"autoprefixer": "^10.2",
2021-03-04 17:53:25 +01:00
"bootstrap": "^5.0.0-beta2",
"clipboard": "^2.0",
2021-03-15 12:12:38 +01:00
"eslint": "^7.22",
"flexsearch": "^0.6",
2021-03-15 18:55:49 +01:00
"highlight.js": "^10.6.0",
2021-03-01 10:43:54 +01:00
"hugo-bin": "^0.69",
2020-11-04 08:26:58 +01:00
"instant.page": "^5.1",
2021-03-16 15:14:45 +01:00
"katex": "^0.13.0",
2021-01-04 17:15:06 +01:00
"lazysizes": "^5.3",
2021-03-04 14:46:16 +01:00
"markdownlint-cli": "^0.27",
2020-11-04 08:26:58 +01:00
"netlify-lambda": "^2.0",
2020-12-09 08:30:17 +01:00
"postcss": "^8.2",
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",
2020-12-31 14:24:14 +01:00
"standard-version": "^9.1",
2021-03-10 16:16:14 +01:00
"stylelint": "^13.12",
"stylelint-config-standard": "^21.0"
2020-12-03 16:07:04 +01:00
}
2020-04-15 15:48:16 +02:00
}