-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 958 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
24
25
{
"dependencies": {
"@tailwindcss/typography": "github:tailwindcss/typography",
"autoprefixer": "^10.4.12",
"babel-loader": "^8.2.5",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.17",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"tailwindcss": "^3.1.8",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"requirements": "bundle install && build",
"develop": "bundle exec jekyll clean && run-p develop:{webpack,jekyll}",
"develop:jekyll": "bundle exec jekyll serve --host 0.0.0.0 --livereload",
"develop:webpack": "webpack --mode development --watch",
"build": "jekyll build --config _config.yml",
"serve": "jekyll serve --livereload --incremental",
"production": "run-s production:webpack production:jekyll",
"production:jekyll": "JEKYLL_ENV=production NODE_ENV=production bundle exec jekyll build",
"production:webpack": "webpack --mode production"
}
}