generated from chamik/jekyll-tailwind-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 857 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "jekyll-tailwind-template",
"version": "0.0.1",
"description": "Basic Jekyll site template using Tailwind CSS with PostCSS",
"scripts": {
"setup": "gem install bundler && bundle install && npm ci",
"dev": "concurrently npm:start:*",
"start:dev1": "bundler exec jekyll serve --host 0.0.0.0",
"start:dev2": "npx tailwindcss -i src/styles/main.css -o _site/styles/main.css --watch",
"build": "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",
"concurrently": "^9.2.1",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.18"
}
}