-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.5 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
{
"name": "webpack-boilerplate",
"version": "0.0.1",
"description": "Plain webpack 4 Boilerplate with Babel, SASS and jquery on board",
"author": "Enrique Barra Ariasy",
"license": "MIT",
"homepage": "https://github.com/ebarra/webpack-boilerplate",
"scripts": {
"dev": "cross-env NODE_ENV=dev webpack-dev-server --progress --mode development --config webpack.config.dev.js",
"prod": "cross-env NODE_ENV=dev webpack-dev-server --progress --host 0.0.0.0 --disableHostCheck=true --config webpack.config.dev.js",
"build": "rimraf dist && cross-env NODE_ENV=production webpack -p --progress --mode production --config webpack.config.build.js && cross-env npm run copy_assets",
"copy_assets": "mkdir -p dist/assets && cp -r assets dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/ebarra/webpack-boilerplate.git",
"inspiration": "https://github.com/cvgellhorn/webpack-boilerplate"
},
"dependencies": {
"jquery": "^3.3.1"
},
"devDependencies": {
"ejs-compiled-loader": "^1.1.0",
"babel-core": "6.26.3",
"babel-loader": "7.1.4",
"babel-preset-env": "1.7.0",
"clean-webpack-plugin": "0.1.19",
"cross-env": "5.1.6",
"css-loader": "0.28.11",
"file-loader": "1.1.11",
"html-webpack-plugin": "3.2.0",
"node-sass": "4.9.0",
"sass-loader": "7.0.2",
"style-loader": "0.21.0",
"url-loader": "1.0.1",
"webpack": "4.10.2",
"webpack-cli": "3.0.2",
"webpack-dev-server": "3.1.4",
"webpack-merge": "4.1.2"
}
}