-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.57 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
51
{
"name": "tailwindcss-html",
"version": "0.1.0",
"description": "Simple boilerplate to create static html website styled with TailwindCSS",
"main": "index.js",
"repository": "git@github.com:iporaitech/tailwindcss-html.git",
"author": "hisa <hisa@iporaitech.com>",
"license": "MIT",
"browserslist": [
"defaults"
],
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"build:prod": "webpack -p --progress --color --config webpack.prod.js"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@fullhuman/postcss-purgecss": "^1.3.0",
"autoprefixer": "^9.7.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"cssnano": "^4.1.10",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"favicons-webpack-plugin": "^1.0.2",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nesting": "^7.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^1.19.1",
"style-loader": "^1.0.0",
"stylelint-config-recommended": "^3.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"tailwindcss": "^1.1.3"
}
}