-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 KB
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
{
"name": "webpack-code-splitting",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"dev": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/max-kim-tutorial/code-splitting-webpack.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/max-kim-tutorial/code-splitting-webpack/issues"
},
"homepage": "https://github.com/max-kim-tutorial/code-splitting-webpack#readme",
"dependencies": {
"@babel/core": "^7.9.6",
"clean-webpack-plugin": "^3.0.0",
"lodash": "^4.17.15",
"react": "^16.13.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.7.0",
"html-webpack-plugin": "^4.3.0",
"webpack-dev-server": "^3.11.0"
}
}