-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 739 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 739 Bytes
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
{
"name": "webpack-tutorial",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "webpack-dev-server --hot",
"build": "rimraf dist && webpack --progress --profile"
},
"author": "",
"license": "ISC",
"keywords": [
"webpack"
],
"description": "",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.2",
"rimraf": "^2.6.2",
"style-loader": "^0.23.0",
"url-loader": "^1.1.1",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8"
}
}