-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
60 lines (60 loc) · 2.24 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
{
"name": "track-it",
"version": "2.0.2",
"description": "A simple application based on flespi.io and built with Quasar and Leaflet.js. Allows tracking different devices on the map, viewing telemetry messages for these devices.",
"productName": "TrackIt!",
"capacitorId": "",
"author": "Sergey Buntsevich <scarry92@yandex.ru>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue src",
"dev": "quasar dev -m spa",
"dev_local": "env NODE_LOCAL=local quasar dev -m spa",
"build": "quasar build -m spa",
"deploy": "rm -rf dist && npm run build && rm -rf deploy && mkdir deploy && cp -R dist/spa/* misc LICENSE package.json deploy && cp README.md deploy/README.md && node_modules/git-directory-deploy/bin/git-directory-deploy.sh -ddeploy -bgh-pages -rgit@git.gurtam.net:flespi/frontend/TrackIt.git && rm -rf deploy && git push github gh-pages"
},
"dependencies": {
"@quasar/extras": "^1.5.2",
"core-js": "^3.14.0",
"datetimerangepicker": "github:flespi-software/DateTimeRangePicker",
"flespi-io-js": "github:flespi-software/flespi-io-js",
"leaflet": "^1.9.4",
"leaflet-geometryutil": "^0.10.3",
"leaflet.marker.slideto": "^0.2.0",
"leaflet.polylinemeasure": "github:ppete2/Leaflet.PolylineMeasure#9908e5a",
"lodash": "^4.17.21",
"moment": "^2.29.0",
"qtelemetry": "github:flespi-software/QTelemetry",
"quasar": "^1.15.20",
"qvirtualscroll": "github:flespi-software/QVirtualScroll",
"vue-draggable-resizable": "^2.3.0",
"vue-i18n": "^8.15.4",
"vue-virtual-scroll-list": "^1.4.6",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@quasar/app": "^2.2.10",
"babel-eslint": "^10.0.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-vue": "^7.7.0",
"eslint-webpack-plugin": "^2.4.0",
"git-directory-deploy": "^1.5.1"
},
"browserslist": [
"last 10 Chrome versions",
"last 10 Firefox versions",
"last 4 Edge versions",
"last 7 Safari versions",
"last 8 Android versions",
"last 8 ChromeAndroid versions",
"last 8 FirefoxAndroid versions",
"last 10 iOS versions",
"last 5 Opera versions"
],
"engines": {
"node": ">= 10.18.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}