-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 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
{
"name": "webpack-4-configuration",
"version": "1.1.2",
"description": "A Webpack 4 starter configuration ready for production",
"private": true,
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build:netlify": "webpack --config webpack.prod.js && cp ./netlify/_redirects ./dist/_redirects",
"build": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Drozerah/webpack-4-configuration.git"
},
"keywords": [],
"author": {
"name": "Thomas G. aka Drozerah",
"email": "drozerah@gmail.com",
"url": "https://github.com/Drozerah"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.1.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.4",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^4.1.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.1"
}
}