-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.73 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
{
"name": "mqtt-board",
"version": "3.5.2",
"description": "Client based on MQTT.js and Vue.js",
"productName": "MQTT Board",
"author": "Sergey Buntsevich <scarry92@yandex.ru>",
"main": "index.js",
"private": true,
"license": "MIT",
"scripts": {
"dev": "quasar dev",
"build": "quasar build",
"deploy": "quasar build -m spa && mkdir -p deploy && cp -R dist/spa/* misc LICENSE package.json README.md deploy && node_modules/git-directory-deploy/bin/git-directory-deploy.sh -ddeploy -bgh-pages -rgit@git.gurtam.net:flespi/frontend/mqtt-board.git && rm -rf deploy && git push github gh-pages",
"lint": "eslint --ext .js,.vue ./src",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@quasar/extras": "^1.16.9",
"compare-versions": "^6.1.0",
"flespi-io-js": "github:flespi-software/flespi-io-js#v3",
"lodash": "^4.17.21",
"mitt": "^3.0.1",
"mqtt": "^5.3.4",
"quasar": "^2.14.2",
"vue": "^3.4.18",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@quasar/app-vite": "^2.4.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^9.20.1",
"git-directory-deploy": "^1.5.1",
"sass": "^1.70.0",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"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": ">= 18.0.0",
"npm": ">= 9.0.0"
}
}