forked from srehaider/scss2css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 748 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 748 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
{
"name": "scss2css",
"version": "1.0.0",
"description": "Use webpack to convert SCSS to CSS for production and development",
"scripts": {
"build": "webpack -p --progress",
"start": "webpack -wd --progress --devtool='source-map'"
},
"keywords": ["SCSS", "CSS", "webpack", "SASS"],
"author": "Rehan Haider",
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.5.0",
"css-loader": "^2.1.1",
"css-mqpacker": "^7.0.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"sass-loader": "^7.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-fix-style-only-entries": "^0.2.1"
}
}