-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 927 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
{
"name": "vue-webpack-setup",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"serve":"webpack-dev-server --open --config webpack.config.js",
"build":"webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Luciano Castillo",
"license": "ISC",
"dependencies": {
"bootstrap": "^5.3.3",
"bootstrap-vue": "^2.23.1",
"vue": "^2.7.16"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@vue/cli-plugin-babel": "^5.0.8",
"babel-loader": "^8.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.8",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}