-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
23 lines (23 loc) · 854 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
{
"name": "Blonde",
"version": "0.0.2",
"description": "Blonde, A simple theme using Tailwind CSS.",
"main": "index.js",
"repository": "https://github.com/opera7133/Blonde",
"author": "wamo <[email protected]>",
"license": "MIT",
"scripts": {
"start": "concurrently npm:watch:*",
"watch:tw": "tailwindcss -i ./themes/Blonde/assets/css/main.css -o ./themes/Blonde/assets/css/style.css --watch",
"watch:hugo": "hugo server",
"build": "tailwindcss -i ./themes/Blonde/assets/css/main.css -o ./themes/Blonde/assets/css/style.css && hugo --minify"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.7",
"autoprefixer": "^10.4.11",
"concurrently": "^8.0.1",
"postcss": "^8.4.16",
"postcss-cli": "^10.0.0",
"tailwindcss": "^3.1.8"
}
}