-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.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
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
99
100
101
{
"name": "highest",
"version": "0.1.2",
"description": "🧗Your climbing best friend. Highest is an application to keep track of climbing activity",
"homepage": "https://highest.netlify.app",
"keywords": [
"climbing",
"bouldering",
"pwa",
"sports"
],
"licenses": [
{
"name": "GPL-3.0",
"url": "https://github.com/highest-app/highest/blob/master/LICENSE"
}
],
"maintainers": [
{
"name": "Exybore",
"email": "[email protected]",
"web": "https://exybore.becauseofprog.fr"
}
],
"repositories": [
{
"type": "git",
"url": "https://github.com/highest-app/highest.git"
}
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@chenfengyuan/vue-qrcode": "^1.0.2",
"@mdi/font": "^5.9.55",
"compressorjs": "^1.0.7",
"core-js": "^3.15.2",
"flakeid": "^1.0.0",
"leaflet": "^1.7.1",
"leaflet-geosearch": "^3.3.2",
"moment": "^2.29.1",
"nprogress": "^0.2.0",
"qrcode": "^1.4.4",
"register-service-worker": "^1.7.2",
"roboto-fontface": "*",
"rss-parser": "^3.12.0",
"vue": "^2.6.14",
"vue-i18n": "^8.24.5",
"vue-qrcode-reader": "^3.0.3",
"vue-resource": "^1.5.3",
"vue-router": "^3.5.2",
"vue2-leaflet": "^2.7.1",
"vue2-leaflet-geosearch": "^1.0.6",
"vuedraggable": "^2.24.3",
"vuetify": "^2.5.6",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-plugin-pwa": "^4.5.13",
"@vue/cli-plugin-router": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"babel-eslint": "^10.1.0",
"eslint": "^7.30.0",
"eslint-plugin-vue": "^7.13.0",
"stylus": "^0.54.8",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-i18n": "^2.1.1",
"vue-cli-plugin-vuetify": "^2.4.1",
"vue-template-compiler": "^2.6.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/strongly-recommended",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
]
}