-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.03 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.03 KB
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
{
"name": "track-it",
"version": "3.1.0",
"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": "com.flespi.trackit",
"author": "Sergey Buntsevich <scarry92@yandex.ru>",
"type": "module",
"private": true,
"scripts": {
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{js,cjs,mjs,vue}\"",
"dev": "quasar dev",
"build": "quasar build",
"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.17.0",
"axios": "^1.9.0",
"datetimerangepicker": "github:flespi-software/DateTimeRangePicker",
"flespi-io-js": "git+ssh://git@git.gurtam.net:flespi/frontend/flespi-io-js.git",
"leaflet": "^1.9.4",
"leaflet-geometryutil": "^0.10.3",
"leaflet.marker.slideto": "^0.2.0",
"leaflet.polylinemeasure": "github:ppete2/Leaflet.PolylineMeasure#9908e5a",
"pinia": "^3.0.2",
"quasar": "^2.18.1",
"qvirtualscroll": "git+ssh://git@git.gurtam.net:flespi/frontend/QVirtualScroll.git#vue3",
"vue": "^3.5.14",
"vue-i18n": "^11.1.3",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@intlify/unplugin-vue-i18n": "^2.0.0",
"@quasar/app-vite": "^2.2.0",
"@vue/eslint-config-prettier": "^10.2.0",
"autoprefixer": "^10.4.21",
"eslint": "^9.27.0",
"eslint-plugin-vue": "^9.33.0",
"git-directory-deploy": "^1.5.1",
"globals": "^15.15.0",
"postcss": "^8.5.3",
"prettier": "3.5.3",
"vite-plugin-checker": "^0.8.0"
},
"engines": {
"node": "^28 || ^26 || ^24 || ^22 || ^20 || ^18",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}