-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.24 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cashier",
"version": "3.0.0",
"description": "A mobile companion for Ledger-cli",
"productName": "Cashier",
"author": "Alen Šiljak",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/alensiljak/cashier"
},
"bugs": {
"url": "https://github.com/alensiljak/cashier/issues"
},
"homepage": "https://github.com/alensiljak/cashier",
"scripts": {
"dev": "quasar dev --mode pwa",
"build": "quasar build --mode pwa",
"lint": "eslint --ext .js,.vue ./",
"deploy": "netlify deploy --prod",
"format": "prettier --write \"**/*.{js,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "playwright test"
},
"dependencies": {
"webdav": "^5.7.1"
},
"devDependencies": {
"@playwright/test": "^1.48.2",
"@quasar/app-vite": "^1.10.2",
"@quasar/extras": "^1.16.13",
"@types/js-yaml": "^4.0.9",
"@types/numeral": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "10.4.20",
"dexie": "^4.0.9",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-vue": "^9.30.0",
"file-saver": "^2.0.5",
"ky": "^1.7.2",
"lucide-vue-next": "^0.454.0",
"mathjs": "^13.2.1",
"moment": "^2.30.1",
"netlify-cli": "^17.37.2",
"numeral": "^2.0.6",
"pcloud-sdk-js": "^2.0.0",
"pinia": "^2.2.6",
"prettier": "^3.3.3",
"quasar": "^2.17.2",
"register-service-worker": "^1.7.2",
"toml": "^3.0.0",
"typescript": "^5.6.3",
"url": "^0.11.4",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.2.2",
"vue": "^3.4.15",
"vue-inputmask": "^0.2.1",
"vue-router": "^4.4.5",
"vue-slideout": "^1.8.0",
"vue-virtual-scroller": "^2.0.0-beta.8",
"vuedraggable": "^4.1.0",
"vuex": "^4.1.0",
"workbox-background-sync": "^6.6.0",
"workbox-build": "^6.6.0",
"workbox-expiration": "^6.6.0",
"workbox-precaching": "^6.6.0",
"workbox-routing": "^6.6.0",
"workbox-strategies": "^6.6.0"
},
"engines": {
"node": "^22||^20 || ^19 || ^18 || ^16 || ^14.19",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}