-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 720 Bytes
/
package.json
File metadata and controls
18 lines (18 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "jekyll-tailwind-template",
"version": "0.0.2",
"description": "Basic Jekyll site template using Tailwind CSS with PostCSS",
"scripts": {
"setup": "gem install bundler && bundle install && npm ci",
"dev": "JEKYLL_ENV=development bundler exec jekyll serve --livereload",
"build": "JEKYLL_ENV=production bundler exec jekyll build -d build/ && npx tailwindcss -i build/styles/main.css -o build/styles/main.css --minify"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.1",
"autoprefixer": "^10.4.2",
"postcss": "^8.4.41",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.18"
}
}