forked from fauzanmy/pehtheme-hugo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 803 Bytes
/
package.json
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
{
"name": "pehtheme",
"version": "1.0.0",
"description": "An open-source Hugo theme lovingly crafted using Tailwind CSS.",
"main": "index.js",
"scripts": {
"dev:generate": "npx tailwindcss -i ./assets/input.css -o ./themes/pehtheme-hugo/assets/css/main.css -w",
"dev:hugo": "hugo server",
"dev": "run-p dev:*",
"build:generate": "npx tailwindcss -i ./assets/input.css -o ./themes/pehtheme/static/assets/css/main.css",
"build:hugo": "hugo",
"build": "run-p build:*"
},
"keywords": ["hugo", "tailwindcss"],
"author": "Fauzan My",
"license": "MIT",
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"tailwindcss": "^3.3.3"
}
}