-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 876 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"scripts": {
"jekyll:dev": "JEKYLL_ENV=production bundle exec jekyll serve --incremental --force-polling --host 0.0.0.0",
"jekyll:build": "JEKYLL_ENV=production bundle exec jekyll build --future",
"css:dev": "postcss assets/css/style.css --output _site/assets/css/style.css --watch --poll",
"css:build": "NODE_ENV=production postcss assets/css/style.css --output _site/assets/css/style.css",
"dev": "concurrently --kill-others 'npm run jekyll:dev' 'npm run css:dev'",
"build": "npm run jekyll:build && npm run css:build"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.7",
"autoprefixer": "^10.4.12",
"cssnano": "^5.1.13",
"postcss": "^8.4.18",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"tailwindcss": "^3.1.8",
"watch": "^1.0.2"
},
"dependencies": {
"concurrently": "^7.5.0"
}
}