-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.77 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.77 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "roaringroster",
"version": "0.2.1",
"description": "A collaborative rostering app for self-organized teams",
"productName": "RoaringRoster",
"author": "Michael Kamphausen",
"homepage": "https://www.roaringroster.app",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/roaringroster/webapp.git"
},
"type": "module",
"scripts": {
"install": "curl \"https://raw.githubusercontent.com/spdx/license-list-data/master/text/{MIT,Apache-2.0,ISC,Unlicense}.txt\" --output \"license-templates/#1.txt\" --create-dirs --silent",
"dev": "./bin/quasar.js",
"device": "./bin/quasar.js",
"build": "./bin/quasar.js",
"set:version": "npm --no-git-tag-version version ${VERSION:-patch}",
"version": "bin/version.js",
"icons": "bin/icons.js",
"lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\"",
"format": "prettier --write \"**/*.{js,ts,vue,,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"@automerge/automerge": "^2.2.8",
"@automerge/automerge-repo": "^1.2.1",
"@automerge/automerge-repo-network-websocket": "^1.2.1",
"@automerge/automerge-repo-storage-indexeddb": "^1.2.1",
"@localfirst/auth-provider-automerge-repo": "^6.0.0",
"@quasar/extras": "^1.17.0",
"@yeger/vue-masonry-wall": "^5.0.2",
"argon2-browser": "^1.18.0",
"chart.js": "^4.4.6",
"core-js": "^3.6.5",
"dexie": "^4.0.1",
"dexie-encrypted": "^2.0.0",
"dompurify": "^3.2.4",
"fs-extra": "^11.1.1",
"indexeddbshim": "^10.1.0",
"luxon": "^3.4.2",
"pinia": "^3.0.1",
"qrcode": "^1.5.3",
"quasar": "^2.18.6",
"sqlite3": "5.1.6",
"ua-parser-js": "^1.0.39",
"vue": "^3.5.6",
"vue-chartjs": "^5.3.2",
"vue-facing-decorator": "^3.0.3",
"vue-i18n": "^11.1.2",
"vue-qrcode-reader": "^5.5.7",
"vue-router": "^5.0.2"
},
"devDependencies": {
"@electron/notarize": "^3.1.1",
"@eslint/js": "^9.22.0",
"@quasar/app-webpack": "^4.3.1",
"@quasar/quasar-app-extension-qcalendar": "^4.1.2",
"@quasar/quasar-app-extension-qmarkdown": "^2.0.5",
"@types/argon2-browser": "^1.18.1",
"@types/luxon": "^3.3.2",
"@types/node": "^25.0.3",
"@types/qrcode": "^1.5.5",
"@types/ua-parser-js": "^0.7.39",
"@types/uuid": "^10.0.0",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.0",
"apk-update": "^1.0.3",
"autoprefixer": "^10.4.21",
"base64-loader": "^1.0.0",
"dotenv": "^17.1.0",
"electron": "^42.1.0",
"electron-builder": "^26.0.12",
"electron-updater": "^6.3.9",
"electron-window-state": "^5.0.3",
"eslint": "^9.22.0",
"eslint-plugin-vue": "^10.0.0",
"eslint-webpack-plugin": "^5.0.0",
"globals": "^17.0.0",
"license-webpack-plugin": "^4.0.2",
"prettier": "^3.5.3",
"ts-loader": "^9.5.2",
"vue-tsc": "^3.0.1"
},
"overrides": {
"dexie": "$dexie",
"fork-ts-checker-webpack-plugin": "9.0.2",
"@yeger/vue-masonry-wall": {
"vue": "^3.5.16"
}
},
"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": ">= 12.22.1",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
},
"electronLanguagesInfoPlistStrings": {
"en": {
"NSCameraUsageDescription": "This app needs access to the camera for scanning QR codes and documents."
},
"de": {
"NSCameraUsageDescription": "Diese App benötigt Zugriff auf die Kamera zum Scannen von QR-Codes und Dokumenten."
}
}
}