-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 951 Bytes
/
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
{
"name": "webpack-babel-sass-boilerplate",
"version": "1.0.0",
"description": "An extremely simple and minimalistic boilerplate for building client-side web applications with: Webpack, Babel, and SASS.",
"main": "index.js",
"author": "Devon Bradley",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.0.6",
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.2",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^3.1.0"
},
"scripts": {
"dev": "webpack-dev-server --open --mode development --module-bind js=babel-loader",
"watch": "webpack --watch",
"build": "webpack --mode production --module-bind js=babel-loader"
}
}