-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 725 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 725 Bytes
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
{
"name": "tailwind-webpack-template",
"version": "1.0.0",
"description": "Template for deploying a website with TailwindCSS and Webpack",
"scripts": {
"build": "webpack build",
"dev": "webpack serve --open"
},
"author": "elnexreal",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.20",
"@babel/preset-env": "^7.22.20",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"postcss": "^8.4.29",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.1.3",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.3",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}