-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "webpackmay24th",
"version": "1.0.0",
"description": "Webpack",
"main": "index.js",
"scripts": {
"start": "webpack --config webpack.dev.js",
"serve": "webpack serve --config webpack.dev.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/EivydasLeo/WebpackMay24th.git"
},
"keywords": [
"Web"
],
"author": "E.L",
"license": "MIT",
"bugs": {
"url": "https://github.com/EivydasLeo/WebpackMay24th/issues"
},
"homepage": "https://github.com/EivydasLeo/WebpackMay24th#readme",
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.5",
"html-webpack-plugin": "^5.3.1",
"image-minimizer-webpack-plugin": "^2.2.0",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^9.0.0",
"style-loader": "^2.0.0",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}