-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.26 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.3",
"browser-sync": "^2.27.7",
"browser-sync-webpack-plugin": "^2.3.0",
"css-loader": "^6.5.1",
"cssnano": "^5.0.15",
"mini-css-extract-plugin": "^2.4.6",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"sass-loader": "^12.4.0",
"serialize-javascript": "^6.0.0",
"style-loader": "^3.3.1",
"tailwindcss": "^3.0.12",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"scripts": {
"develop": "bundle exec jekyll clean && run-p develop:{webpack,jekyll}",
"develop:jekyll": "bundle exec jekyll build --incremental --watch --config _config.yml,_config.dev.yml",
"develop:webpack": "webpack --mode development --watch",
"build": "run-s build:webpack build:jekyll",
"build:jekyll": "JEKYLL_ENV=production bundle exec jekyll build",
"build:webpack": "webpack --mode production"
},
"dependencies": {
"@hotwired/stimulus": "^3.0.1",
"@hotwired/stimulus-webpack-helpers": "^1.0.1",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0"
}
}