-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.36 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
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
{
"name": "tachobox",
"version": "0.8.0-beta",
"description": "Viewer for tachograph DDD files",
"productName": "TachoBox",
"author": "Evgenij Spitsyn <spev@gurtam.team>",
"license": "MIT",
"homepage": "https://tachobox.flespi.io",
"repository": {
"type": "git",
"url": "git+https://github.com/flespi-software/TachoBox.git"
},
"bugs": {
"url": "https://github.com/flespi-software/TachoBox/issues"
},
"keywords": [
"tachograph",
"ddd",
"digital-tachograph",
"driver-card",
"eu-561-2006",
"drivers-hours",
"compliance",
"telematics",
"flespi",
"quasar",
"vue"
],
"type": "module",
"private": true,
"scripts": {
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{js,cjs,mjs,vue}\"",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "vitest run",
"test:watch": "vitest",
"violations": "node scripts/find-violations.mjs",
"conformance:update": "node scripts/update-conformance.mjs",
"dev": "quasar dev",
"build": "quasar build",
"deploy": "rm -rf dist && npm run build && rm -rf deploy && mkdir deploy && cp -R dist/spa/* LICENSE package.json deploy && node_modules/git-directory-deploy/bin/git-directory-deploy.sh -ddeploy -bgh-pages -rgit@github.com:flespi-software/TachoBox.git && rm -rf deploy",
"postinstall": "quasar prepare"
},
"dependencies": {
"@quasar/extras": "^1.18.0",
"axios": "^1.14.0",
"flespi-io-js": "github:flespi-software/flespi-io-js#v3",
"leaflet": "^1.9.4",
"pinia": "^3.0.4",
"quasar": "^2.19.3",
"topojson-client": "^3.1.0",
"vue": "^3.5.32",
"vue-i18n": "^11.3.2",
"vue-router": "^5.0.4",
"world-atlas": "^2.0.2"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@intlify/unplugin-vue-i18n": "^11.0.7",
"@quasar/app-vite": "^2.6.0",
"@vue/eslint-config-prettier": "^10.2.0",
"autoprefixer": "^10.4.27",
"baseline-browser-mapping": "^2.10.16",
"eslint": "^9.14.0",
"eslint-plugin-vue": "^10.8.0",
"git-directory-deploy": "^1.5.1",
"globals": "^17.4.0",
"postcss": "^8.5.9",
"prettier": "^3.8.1",
"vite-plugin-checker": "^0.12.0",
"vitest": "^4.1.8",
"vue-eslint-parser": "^10.4.0"
},
"engines": {
"node": "^28 || ^26 || ^24 || ^22 || ^20",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}