-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
33 lines (33 loc) · 933 Bytes
/
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
{
"name": "medium-lazy-load-polyfills",
"version": "1.0.0",
"description": "Example of lazy loading polyfills using webpack and dynamic imports",
"main": "src/index.js",
"author": "Piotr Kuczynski <[email protected]>",
"license": "MIT",
"browserslist": [
"last 2 versions",
"not ie < 11"
],
"dependencies": {
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.4",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.2",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"build": "webpack --mode=production",
"start": "webpack-dev-server --mode=development"
}
}