-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "webpack-tailwindcss",
"version": "1.0.0",
"description": "Starter Webpack with Tailwind CSS",
"private": true,
"scripts": {
"serve": "webpack serve",
"build": "webpack --mode=production",
"start": "webpack serve --mode=production",
"lint": "eslint --fix --ignore-path .gitignore .",
"prepare": "husky install",
"test": "npm run lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"autoprefixer": "^10.2.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"beautify-html-webpack-plugin": "^1.0.3",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.1",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.4.0",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^1.6.0",
"postcss": "^8.3.5",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "2.3.1",
"prettier-eslint": "^12.0.0",
"tailwindcss": "^2.2.2",
"terser-webpack-plugin": "^5.1.3",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}