forked from zerostaticthemes/hugo-atlantic-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.17 KB
/
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
26
27
{
"name": "hugo-atlantic-theme",
"version": "1.0.0",
"description": "A Hugo Tailwind starter blog",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"start": "concurrently \"npm run watch:tailwind\" \"npm run watch:hugo\"",
"build": "tailwindcss -i ./assets/css/tailwind.css -o ./assets/css/style.css && hugo --minify",
"watch:tailwind": "tailwindcss -i ./assets/css/tailwind.css -o ./assets/css/style.css --watch",
"watch:hugo": "hugo server",
"example": "tailwindcss -i ./assets/css/tailwind.css -o ./assets/css/style.css && hugo server --source=exampleSite --themesDir ../..",
"example-build": "tailwindcss -i ./assets/css/tailwind.css -o ./assets/css/style.css && hugo --source=exampleSite --themesDir ../.."
},
"dependencies": {
"@tailwindcss/typography": "^0.5.0",
"autoprefixer": "^10.4.2",
"concurrently": "^7.0.0",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"postcss-nested": "^5.0.6",
"prettier": "^2.5.1",
"prettier-plugin-go-template": "0.0.11",
"tailwindcss": "^3.0.15"
}
}