-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.49 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
{
"name": "flight-diary",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "nyc vue-cli-service test:unit",
"test-report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "vue-cli-service lint",
"deploy": "gh-pages -d dist",
"prettier": "npx prettier --write \"**/*.{vue,js}\""
},
"dependencies": {
"@babel/polyfill": "7.12.1",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-regular-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
"@fortawesome/vue-fontawesome": "2.0.2",
"axios": "0.21.2",
"chart.js": "2.9.4",
"core-js": "3.16.1",
"jsdom": "16.7.0",
"leaflet": "1.7.1",
"leaflet.geodesic": "2.5.5-0",
"nord": "0.2.1",
"vue": "2.6.14",
"vue-axios": "3.2.5",
"vue-chartjs": "3.5.1",
"vue-class-component": "7.2.6",
"vue-picture-swipe": "2.1.0",
"vue-property-decorator": "9.1.2",
"vue-router": "3.5.2",
"vue-select": "3.12.2",
"vue2-leaflet": "2.7.1",
"vuetify": "2.5.8",
"vuex": "3.6.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/chai": "4.2.21",
"@types/leaflet": "1.7.4",
"@types/lodash": "4.14.172",
"@types/mocha": "9.0.0",
"@types/vue-select": "3.11.2",
"@typescript-eslint/eslint-plugin": "4.29.1",
"@typescript-eslint/parser": "4.29.1",
"@vue/cli-plugin-babel": "4.5.13",
"@vue/cli-plugin-eslint": "4.5.13",
"@vue/cli-plugin-router": "4.5.13",
"@vue/cli-plugin-typescript": "4.5.13",
"@vue/cli-plugin-unit-mocha": "3.12.0",
"@vue/cli-plugin-vuex": "4.5.13",
"@vue/cli-service": "4.5.13",
"@vue/eslint-config-prettier": "6.0.0",
"@vue/eslint-config-typescript": "7.0.0",
"@vue/test-utils": "1.2.2",
"babel-plugin-istanbul": "6.0.0",
"chai": "4.3.4",
"codecov": "3.8.3",
"eslint": "6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-loader": "4.0.2",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-vue": "7.16.0",
"gh-pages": "3.2.3",
"istanbul": "0.4.5",
"mocha": "8.3.2",
"nyc": "15.1.0",
"prettier": "2.3.2",
"source-map-support": "0.5.19",
"ts-node": "10.2.0",
"typescript": "4.3.5",
"vue-cli-plugin-vuetify": "2.4.2",
"vue-template-compiler": "2.6.14",
"vuex-class": "0.3.2",
"vuex-module-decorators": "1.0.1"
}
}