-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1.17 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
{
"name": "middleman-webpack-tailwind",
"version": "1.0.0",
"description": "An opinionated and ready-to-use Middleman 4 template with Tailwind CSS and Webpack Preconfigured",
"private": true,
"scripts": {
"start": "NODE_ENV=development webpack -d --watch --config ./webpack.config.js --color --display-error-details",
"build": "NODE_ENV=production webpack -p --config ./webpack.config.js --progress --color --display-error-details --bail"
},
"keywords": [],
"author": "@richjdsmith",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"autoprefixer": "^9.4.10",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.10",
"eslint": "^5.15.1",
"eslint-loader": "^2.1.2",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss": "^7.0.14",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-purgecss": "^1.0.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"tailwindcss": "^0.7.4",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"dependencies": {}
}