-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 863 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
26
27
28
29
30
31
32
33
{
"name": "webpack-tailwind",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier '{*.config.js,./src/**/*}' --write --ignore-unknown",
"webpack-hmr": "webpack serve",
"webpack-watch": "webpack --watch"
},
"keywords": [],
"author": "Robin Malfait",
"license": "ISC",
"dependencies": {
"autoprefixer": "^10.0.3",
"css-loader": "^5.0.1",
"html-webpack-plugin": "^4.5.0",
"postcss": "^8.1.13",
"postcss-import": "^13.0.0",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.1",
"webpack": "^5.9.0",
"webpack-dev-server": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"babel-loader": "^8.2.2",
"mini-css-extract-plugin": "^1.3.2",
"webpack-cli": "^4.2.0"
}
}