-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "kbalance-quasar-pwa",
"version": "1.0.0",
"description": "A Quasar/Vue app for tracking and managing shared expenses, allowing users to split costs, track balances, and settle payments within groups.",
"productName": "kBalance",
"author": "Katta <alessandro.cattabiani@gmail.com>",
"private": true,
"scripts": {
"lint": "eslint ./",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "vitest",
"dev": "quasar dev",
"build": "quasar build -m pwa",
"deploy": "quasar build -m pwa && gh-pages -d dist/pwa"
},
"dependencies": {
"@quasar/extras": "^1.16.4",
"apexcharts": "^5.3.6",
"binary-search-bounds": "^2.0.5",
"currency-codes": "^2.2.0",
"firebase": "^12.16.0",
"lodash": "^4.17.21",
"pinia": "^3.0.3",
"pinia-plugin-persistedstate": "^4.1.3",
"qrcode": "^1.5.4",
"quasar": "^2.18.5",
"register-service-worker": "^1.7.2",
"uuid": "^11.0.2",
"vue": "^3.4.18",
"vue-currency-input": "^3.1.0",
"vue-qrcode-reader": "^5.6.0",
"vue-router": "^4.0.12",
"vue3-apexcharts": "^1.10.0"
},
"devDependencies": {
"@eslint/config-array": "^0.21.1",
"@eslint/object-schema": "^2.1.7",
"@quasar/app-vite": "^2.4.0",
"@quasar/cli": "^2.4.1",
"@rollup/plugin-terser": "^0.4.4",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.33.0",
"gh-pages": "^6.3.0",
"globals": "^17.10.0",
"jsdom": "^27.3.0",
"postcss": "^8.4.14",
"prettier": "^2.8.8",
"vite-plugin-checker": "^0.8.0",
"vitest": "^4.0.6",
"vue-eslint-parser": "^9.4.2",
"workbox-build": "^7.3.0",
"workbox-cacheable-response": "^7.3.0",
"workbox-core": "^7.3.0",
"workbox-expiration": "^7.3.0",
"workbox-precaching": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0"
},
"engines": {
"node": ">=18",
"npm": ">=8"
},
"overrides": {
"esbuild": "^0.28.1",
"picomatch": "^2.3.2",
"serialize-javascript": "^7.0.4"
}
}