-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 827 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
26
27
28
29
30
31
32
{
"license": "MIT",
"author": "Benjamin Price",
"name": "hugo-tailwind3-starter",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/BenjaminPrice/hugo-tailwind3-starter.git"
},
"dependencies": {},
"devDependencies": {
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.8",
"postcss-cli": "^9.1.0",
"@fullhuman/postcss-purgecss": "^4.1.3",
"tailwindcss": "^3.0.23",
"concurrently": "^7.0.0"
},
"scripts": {
"start": "concurrently npm:watch:*",
"watch:tw": "npm run build-tw --watch",
"watch:hugo": "hugo server",
"build-tw": "tailwindcss -i ./assets/css/main.css -o ./assets/css/style.css",
"build-hugo": "hugo --minify"
},
"keywords": [
"hugo",
"tailwind",
"tailwindcss"
]
}