portails/package.json

54 lines
1.6 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-01-12 11:35:23 +01:00
"version": "0.1.5",
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",
2020-11-04 08:26:58 +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",
"server": "hugo server",
"test": "npm run -s lint",
"env": "env"
2020-04-15 15:48:16 +02:00
},
"devDependencies": {
2020-11-23 08:51:59 +01:00
"@babel/cli": "^7.12",
"@babel/core": "^7.12",
2020-11-04 08:26:58 +01:00
"@babel/preset-env": "^7.12",
"@fullhuman/postcss-purgecss": "^4.0",
2021-01-08 19:30:46 +01:00
"autoprefixer": "^10.2",
"bootstrap": "^4.6",
"clipboard": "^2.0",
"eslint": "^7.18",
"flexsearch": "^0.6",
"hugo-bin": "^0.68.0",
2020-11-04 08:26:58 +01:00
"instant.page": "^5.1",
2021-01-04 17:15:06 +01:00
"lazysizes": "^5.3",
2020-12-16 16:16:58 +01:00
"markdownlint-cli": "^0.26",
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",
2020-12-31 14:24:14 +01:00
"standard-version": "^9.1",
"stylelint": "^13.9",
2020-04-15 15:48:16 +02:00
"stylelint-config-standard": "^20.0"
2020-12-03 16:07:04 +01:00
}
2020-04-15 15:48:16 +02:00
}