-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 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
{
"name": "kbalance-quasar-pwa",
"version": "0.0.1",
"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 <[email protected]>",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue ./",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"dev": "quasar dev",
"build": "quasar build",
"deploy": "quasar build -m pwa && gh-pages -d dist/pwa"
},
"dependencies": {
"@quasar/extras": "^1.16.4",
"currency-codes": "^2.2.0",
"firebase": "^10.5.0",
"firebaseui": "^6.1.0",
"lodash": "^4.17.21",
"pinia": "^2.0.11",
"pinia-plugin-persistedstate": "^4.1.3",
"qrcode": "^1.5.4",
"quasar": "^2.16.0",
"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"
},
"devDependencies": {
"@quasar/app-vite": "^1.9.0",
"@quasar/cli": "^2.4.1",
"autoprefixer": "^10.4.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-vue": "^9.0.0",
"gh-pages": "^6.3.0",
"postcss": "^8.4.14",
"prettier": "^2.5.1",
"vite-plugin-checker": "^0.8.0",
"workbox-build": "7.0.x",
"workbox-cacheable-response": "7.0.x",
"workbox-core": "7.0.x",
"workbox-expiration": "7.0.x",
"workbox-precaching": "7.0.x",
"workbox-routing": "7.0.x",
"workbox-strategies": "7.0.x"
},
"engines": {
"node": "^20 || ^18 || ^16",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}