-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.12 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
39
40
{
"name": "webpack-4-tutorial",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"dev": "webpack-dev-server --devtool eval-source-map --progress --colors --inline --hot",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vicchoutw/webpack3-go.git"
},
"author": "Victor.Chou",
"license": "ISC",
"bugs": {
"url": "https://github.com/vicchoutw/webpack-4-go/issues"
},
"homepage": "https://github.com/vicchoutw/webpack-4-go#readme",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.2",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"eslint": "^5.6.0",
"eslint-loader": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"jquery": "^3.3.1",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.0",
"webpack": "^4.20.0",
"webpack-cli": "^3.1.1",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "^3.1.4"
}
}