-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 963 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
{
"name": "file-upload",
"version": "0.0.1",
"description": "Upload file and resume when network failure",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"build": "webpack --config webpack.config.dev.js",
"dev": "webpack --config webpack.config.dev.js --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "parth chhabra",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"koa": "^2.8.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"sm-utils": "^2.17.21",
"vue": "^2.6.10",
"vue-material": "^1.0.0-beta-11",
"vue-router": "^3.1.2"
},
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.2.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.19.1",
"style-loader": "^1.0.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7"
}
}