-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 826 Bytes
/
package.json
File metadata and controls
20 lines (20 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "concurrently --names \"HUGO,TAILWIND\" -c \"bgCyan.bold,bgMagenta.bold\" \"npm run tailwind\" \"npm run hugo\"",
"hugo": "hugo serve --disableFastRender",
"hugo:build": "hugo --gc --minify",
"tailwind": "npx tailwindcss -i ./assets/css/styles.css -o ./assets/css/output/styles.css --watch",
"tailwind:build": "npx tailwindcss -i ./assets/css/styles.css -o ./assets/css/output/styles.css --minify",
"build": "npm run tailwind:build && npm run hugo:build"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.x",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"postcss": "^8.5.3",
"postcss-cli": "^10.x",
"tailwindcss": "^3.4.17"
}
}