-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "devopsdays-switzerland-website",
"version": "1.0.0",
"description": "DevOpsDays Zurich website built with Hugo",
"scripts": {
"dev": "npm run build:css && hugo server -D --bind 0.0.0.0",
"prebuild": "npm run build:css && node scripts/generate-sponsor-banner.js",
"build": "hugo --minify",
"build:css": "npx tailwindcss -i ./assets/css/tailwind.css -o ./static/css/tailwind.min.css --minify",
"watch:css": "npx tailwindcss -i ./assets/css/tailwind.css -o ./static/css/tailwind.min.css --watch",
"build:preview": "npm run prebuild && hugo --minify --baseURL=/preview/",
"validate": "html-validate public/**/*.html",
"lighthouse": "lhci autorun",
"clean": "rm -rf public resources static/css/tailwind.min.css",
"generate:banner": "node scripts/generate-sponsor-banner.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dod-zh/web.git"
},
"keywords": [
"devops",
"conference",
"switzerland",
"hugo",
"static-site"
],
"author": "DevOpsDays Zurich Team",
"license": "MIT",
"devDependencies": {
"@lhci/cli": "^0.12.0",
"autoprefixer": "^10.4.22",
"canvas": "^3.2.0",
"html-validate": "^8.7.3",
"postcss": "^8.5.6",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.18",
"xlsx": "^0.18.5"
},
"engines": {
"node": ">=18"
}
}