-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
71 lines (71 loc) · 1.76 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "vue-covid",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/vue-fontawesome": "^0.1.10",
"@progress/kendo-data-query": "^1.5.4",
"@progress/kendo-theme-default": "^4.23.0",
"@progress/kendo-vue-animation": "^0.4.8",
"@progress/kendo-vue-grid": "^0.4.8",
"@progress/kendo-vue-intl": "^0.4.8",
"@progress/kendo-vue-popup": "^0.4.8",
"apexcharts": "^3.24.0",
"axios": "^0.21.2",
"bootstrap": "^4.5.2",
"bootstrap-vue": "^2.17.3",
"highcharts": "^9.0.0",
"highcharts-vue": "^1.3.5",
"moment": "latest",
"numeral": "^2.0.6",
"vue": "^2.6.12",
"vue-analytics": "^5.22.1",
"vue-apexcharts": "^1.6.0",
"vue-class-component": "^7.2.6",
"vue-google-charts": "^0.3.3",
"vue-meta": "^2.4.0",
"vue-moment": "^4.1.0",
"vuetrend": "^0.3.4"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.6",
"@vue/cli-plugin-eslint": "^4.5.6",
"@vue/cli-service": "^4.5.6",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.1.2",
"husky": "^4.3.0",
"pretty-quick": "^3.0.2",
"vue-template-compiler": "^2.6.12"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}