-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 KB
/
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
38
39
40
41
42
43
44
45
46
{
"name": "webpackInit",
"version": "1.0.0",
"description": "",
"main": "my_index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"devbuild": "webpack --config webpack.config.custom.js",
"build": "webpack",
"watch": "webpack --watch",
"serve": "webpack-dev-server --open --port 3000 --hot"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.0.0",
"expose-loader": "^0.7.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.11.1",
"less-loader": "^5.0.0",
"style-loader": "^0.23.1",
"url-loader": "^3.0.0",
"vue-loader": "^15.8.3",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@babel/runtime": "^7.8.7",
"file-loader": "^4.0.0",
"html-withimg-loader": "^0.1.16",
"jquery": "^3.4.1",
"lodash": "^4.17.11",
"vue": "^2.6.11",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.11"
}
}