forked from dvlden/webpack-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.78 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
61
62
63
64
65
{
"name": "webpack-config",
"description": "This is my Webpack 4 configuration for static projects.",
"version": "1.3.0",
"private": true,
"author": {
"name": "Nenad Novaković",
"email": "n.dvlden@gmail.com",
"url": "https://github.com/dvlden"
},
"license": "MIT",
"scripts": {
"serve": "webpack-dev-server --progress --hide-modules --mode development",
"build": "webpack --progress --hide-modules --mode production"
},
"homepage": "https://github.com/dvlden/webpack-config#readme",
"bugs": "https://github.com/dvlden/webpack-config/issues",
"repository": {
"type": "git",
"url": "https://github.com/dvlden/webpack-config.git"
},
"keywords": [
"webpack",
"webpack 4",
"configuration",
"config"
],
"browserslist": [
"last 1 major version",
"> 1%"
],
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"autoprefixer": "^9.4.9",
"babel-loader": "^8.0.5",
"browser-sync": "^2.26.3",
"browser-sync-webpack-plugin": "^2.2.2",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.0",
"css-loader": "^2.1.0",
"cssnano": "^4.1.10",
"fibers": "^3.1.1",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.6.0",
"jsonminify": "^0.4.1",
"mini-css-extract-plugin": "^0.5.0",
"postcss-loader": "^3.0.0",
"sass": "^1.17.2",
"sass-loader": "^7.1.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-subresource-integrity": "^1.3.2",
"webpackbar": "^3.1.5"
},
"dependencies": {
"@fortawesome/fontawesome-pro": "^5.7.2",
"bootstrap": "^4.3.1",
"jquery": "^3.3.1",
"popper.js": "^1.14.7"
}
}