-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.63 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
52
53
54
55
56
57
58
59
60
{
"name": "webpack-boilerplate-mr",
"version": "1.0.0",
"description": "Repository created for study and creation of a boilerplate using webpack ^ 3.x.x",
"main": "app.js",
"homepage": "https://github.com/mariorodeghiero/webpack-boilerplate/blob/master/README.md",
"bugs": {
"url": "https://github.com/mariorodeghiero/webpack-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/mariorodeghiero/webpack-boilerplate.git"
},
"scripts": {
"server": "node_modules/.bin/webpack-dev-server --inline --open",
"dev": "webpack --colors --progress",
"prod": "NODE_ENV=production webpack"
},
"keywords": [
"webpack",
"webpack 3",
"boiler-plate",
"es6",
"babel",
"sass"
],
"tags": [
"webpack",
"boiler-plate"
],
"author": {
"name": "Mário Antônio do A. Rodeghiero",
"email": "mario.rodeghiero@gmail.com",
"homepage": "https://mariorodeghiero.com"
},
"license": "MIT",
"devDependencies": {
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^2.30.1",
"img-loader": "^2.0.1",
"node-sass": "^4.8.3",
"purify-css": "^1.2.6",
"purifycss-webpack": "^0.7.0",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4"
}
}