-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 1023 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
34
35
36
37
{
"name": "webpack4",
"version": "1.0.0",
"description": "A Quick start with webpack 4",
"main": "index.js",
"author": "Ioodu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chinadbo/webpack4-start.git"
},
"bugs": {
"url": "https://github.com/chinadbo/webpack4-start/issues"
},
"homepage": "https://github.com/chinadbo/webpack4-start#readme",
"scripts": {
"start": "webpack",
"dev": "webpack-dev-server --open --mode development",
"build": "webpack--mode production"
},
"devDependencies": {
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "next",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"url-loader": "^1.0.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {}
}