forked from MilordVladyslav/webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "webpack-starter-config",
"version": "4.17.2",
"description": "Simple webpack config",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf public && npm install",
"build": "webpack --mode production --colors --progress",
"prestart": "rimraf public && npm install",
"dev": "webpack-dev-server --mode development --hot --colors --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LeeSwagger/webpack-starter.git"
},
"keywords": [
"webpack",
"es6",
"hot reload",
"es7",
"js",
"babel",
"sass",
"starter"
],
"author": "MilordVladyslav",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"autoprefixer": "^9.5.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"file-loader": "^3.0.1",
"glob": "^7.1.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.6",
"image-webpack-loader": "^4.6.0",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^2.3.4",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.3.1",
"yargs": "^13.2.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"lodash": "^4.17.11"
}
}