-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
47
48
49
50
51
52
53
54
55
{
"name": "short-url",
"version": "0.0.0",
"main": "index.js",
"author": "edisonhello <edisonhello@hotmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "webpack",
"build:dev": "webpack --mode development",
"dev": "concurrently \"nodemon index.js\" \"webpack --mode development --watch\"",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.1",
"bootstrap-vue": "^2.21.2",
"dotenv": "^8.2.0",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-router": "^10.0.0",
"koa-send": "^5.0.1",
"lodash": "^4.17.21",
"mongoose": "^5.11.18",
"portal-vue": "^2.1.7",
"style-loader": "^2.0.0",
"vue": "^2.6.12",
"vue-router": "^3.5.1",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-transform-destructuring": "^7.13.0",
"@babel/preset-env": "^7.13.9",
"@vue/test-utils": "^1.1.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"babel-preset-vue": "^2.0.2",
"concurrently": "^6.0.0",
"css-loader": "^5.1.0",
"file-loader": "^6.2.0",
"flush-promises": "^1.0.2",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"popper.js": "^1.16.1",
"regenerator-runtime": "^0.13.7",
"vue-jest": "^3.0.7",
"vue-loader": "^15.9.6",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "4",
"webpack-cli": "^4.5.0"
}
}