-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 716 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "timetobuildbob.github.io",
"version": "1.0.0",
"description": "Personal website and blog built with Jekyll, Pug templates, and Tailwind CSS (in progress).",
"scripts": {
"build:css": "tailwindcss -i ./assets/css/tailwind.css -o ./assets/css/styles.css",
"watch:css": "tailwindcss -i ./assets/css/tailwind.css -o ./assets/css/styles.css --watch",
"build": "npm run build:css && bundle exec jekyll build",
"dev": "concurrently \"npm run watch:css\" \"bundle exec jekyll serve\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6"
}
}