-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
98 lines (98 loc) · 2.46 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "covid19_v2",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"engines": {
"node": "12.13.x"
},
"dependencies": {
"@amcharts/amcharts4": "^4.9.12",
"@amcharts/amcharts4-geodata": "^4.1.14",
"@fortawesome/fontawesome-free": "5.13.0",
"amcharts3": "^3.21.15",
"ammap3": "^3.21.15",
"apexcharts": "^3.17.1",
"axios": "^0.19.2",
"chart.js": "2.9.3",
"connect-history-api-fallback": "^1.6.0",
"core-js": "^3.6.4",
"countapi-js": "^1.0.1",
"dayjs": "^1.8.23",
"express": "^4.17.1",
"i18n-iso-countries": "^5.1.0",
"papaparse": "^5.2.0",
"popper.js": "1.16.0",
"register-service-worker": "^1.6.2",
"v-selectmenu": "^2.0.2",
"v-tooltip": "^2.0.3",
"vue": "^2.6.11",
"vue-analytics": "^5.22.1",
"vue-apexcharts": "^1.5.2",
"vue-cryptojs": "^2.1.4",
"vue-good-table": "^2.19.1",
"vue-js-modal": "^1.3.33",
"vue-loaders": "^3.3.0",
"vue-mq": "^1.0.1",
"vue-router": "^3.1.5",
"vuescroll": "^4.15.0",
"vuex": "^3.1.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.2.0",
"@vue/cli-plugin-eslint": "~4.2.0",
"@vue/cli-plugin-pwa": "~4.2.0",
"@vue/cli-plugin-router": "~4.2.0",
"@vue/cli-plugin-vuex": "~4.2.0",
"@vue/cli-service": "~4.2.0",
"@vue/eslint-config-airbnb": "^5.0.2",
"babel-eslint": "^10.0.3",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-vue": "^6.1.2",
"node-sass": "^4.12.0",
"sass-loader": "^8.0.2",
"tailwindcss-dark-mode": "^1.1.3",
"vue-cli-plugin-tailwind": "^1.2.0",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.11",
"vue2-hover-intent": "^1.0.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/airbnb"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"max-len": "off",
"no-new": "off",
"vue/html-closing-bracket-newline": "off",
"vue/no-multi-spaces": "off",
"vue/no-v-html": "off",
"vue/max-attributes-per-line": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/script-indent": [
"error",
4,
{
"baseIndent": 1
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}