-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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": "base-webpack",
"version": "1.0.0",
"description": "A base configuration with webpack 5.",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ViavaCos/base-webpack.git"
},
"keywords": [
"webpack",
"webpack5"
],
"author": "ViavaCos",
"license": "ISC",
"bugs": {
"url": "https://github.com/ViavaCos/base-webpack/issues"
},
"homepage": "https://github.com/ViavaCos/base-webpack#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"babel-loader": "^8.2.2",
"babel-polyfill": "^6.26.0",
"css-loader": "^5.2.6",
"css-minimizer-webpack-plugin": "^3.0.2",
"eslint": "^7.30.0",
"eslint-webpack-plugin": "^2.5.4",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mini-css-extract-plugin": "^2.1.0",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"style-loader": "^3.0.0",
"terser-webpack-plugin": "^5.1.4",
"webpack": "^5.42.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"browserslist": {
"development": [
"last 10 chrome versions",
"last 10 firefox versions",
"last 10 ie versions"
],
"production": [
"> 0.2%",
"last 2 versions",
"not dead",
"not op_mini all"
]
},
"sideEffects": [
"*css",
"*.less",
"./src/js/large-js-file.js"
]
}