-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 753 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "zer0arc4-portfolio",
"version": "1.0.0",
"description": "zer0arc4 — Cybersecurity Portfolio",
"private": true,
"engines": {
"node": ">=20 <=22"
},
"scripts": {
"build:css": "postcss themes/cyber-ember/assets/css/main.css -o assets/css/style.css",
"dev": "npm run build:css && hugo server -D --disableFastRender",
"build": "npm run build:css && hugo --minify --gc --environment production && npx pagefind --site public",
"pagefind": "npx pagefind --site public"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"autoprefixer": "^10.4.21",
"cross-env": "^7.0.3",
"pagefind": "^1.3.0",
"postcss": "^8.5.3",
"postcss-cli": "^11.0.1",
"tailwindcss": "^3.4.17"
}
}