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
|
{
"name": "task5_vue",
"version": "1.0.0",
"description": "",
"main": "App.js",
"scripts": {
"start": "python backend_serve.py",
"build": "webpack -p",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.5.5",
"axios": "^0.19.0",
"vue": "^2.6.10",
"webpack": "^4.36.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-loader": "^8.0.6",
"css-loader": "^3.1.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack-cli": "^3.3.6"
}
}
|