forked from treker-mk/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.4 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
{
"name": "covid19-web",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"test": "vue-cli-service test:unit",
"dotnet-restore": "dotnet restore --configfile src/visualizations/NuGet.Config SloCovid19Website.sln",
"test-fsharp": "dotnet test"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@panter/vue-i18next": "^0.15.2",
"axios": "^0.19.2",
"bootstrap-vue": "^2.7.0",
"chart.js": "^2.9.3",
"core-js": "^3.6.4",
"d3": "^5.15.0",
"date-fns": "^2.11.1",
"highcharts": "^8.1.0",
"highcharts-react-official": "^3.0.0",
"i18next": "^19.4.4",
"i18next-browser-languagedetector": "^4.1.1",
"moment": "^2.24.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-google-charts": "^3.0.15",
"vue": "^2.6.10",
"vue-chartjs": "^3.5.0",
"vue-meta": "^2.3.4",
"vue-moment": "^4.1.0",
"vue-router": "^3.1.6",
"vue-scrollto": "^2.17.1",
"vuex": "^3.1.3",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.3.1",
"@vue/cli-plugin-eslint": "~4.3.1",
"@vue/cli-plugin-unit-jest": "~4.3.0",
"@vue/cli-service": "~4.3.1",
"@vue/test-utils": "1.0.0-beta.31",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"fable-compiler": "^2.4.22",
"fable-loader": "^2.1.9",
"html-loader": "^1.0.0",
"markdown-loader": "^5.1.0",
"node-sass": "^4.13.1",
"remotedev": "^0.2.9",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
},
"overrides": [
{
"files": [
"**/__tests__/*.{j,t}s?(x)",
"**/tests/unit/**/*.spec.{j,t}s?(x)"
],
"env": {
"jest": true
}
}
]
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}