forked from pavelloz/webpack-tailwindcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.13 KB
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
{
"scripts": {
"start": "npx webpack-dev-server",
"clean": "npx rimraf dist/",
"build": "npm run clean && npx cross-env NODE_ENV=production npx webpack-cli",
"build:dev": "npm run clean && npx cross-env NODE_ENV=development npx webpack-cli"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.0",
"autoprefixer": "^10.4.4",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"dynamic-html-webpack-plugin": "^1.1.0",
"esbuild-loader": "^2.18.0",
"html-inline-css-webpack-plugin": "^1.11.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"postcss-loader": "^6.2.1",
"tailwindcss": "^2.0.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"browserslist": "last 3 years",
"name": "webpack-tailwindcss",
"version": "1.2.0",
"description": "Webpack + TailwindCSS + esbuild",
"author": "Paweł Kowalski <pavelloz@gmail.com>",
"license": "ISC",
"dependencies": {
"alpinejs": "^3.10.2",
"alpinejs-ray": "^2.0.0",
"axios": "^0.27.2"
}
}