-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.33 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
{
"name": "kdrive-notes",
"version": "1.8.0",
"description": "A kDrive notes app",
"productName": "kDrive notes",
"author": "loicngr <[email protected]>",
"scripts": {
"lint": "eslint --ext .js,.ts,.vue ./",
"format": "prettier --write \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
"test": "echo \"No test specified\" && exit 0",
"dev": "quasar dev",
"dev:electron": "quasar dev -m electron",
"generate:icons": "icongenie g -i src/assets/logo.png -p ./icongenie/icongenie-pwa.json",
"generate:android:icons": "icongenie generate -m capacitor -i src/assets/logo.png",
"generate:electron:icons": "icongenie generate -m electron -i src/assets/logo.png",
"build:pwa": "quasar build -m pwa",
"build:electron": "quasar build -m electron --publish never"
},
"dependencies": {
"@quasar/extras": "^1.16.9",
"@vueuse/core": "^10.7.2",
"@vueuse/integrations": "^10.7.2",
"axios": "^1.6.7",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"pinia": "^2.1.7",
"quasar": "^2.14.3",
"sortablejs": "^1.15.2",
"vue": "^3.4.18",
"vue-i18n": "^9.9.1",
"vue-router": "^4.2.5",
"webdav": "^5.3.2"
},
"devDependencies": {
"@intlify/vite-plugin-vue-i18n": "^3.4.0",
"@quasar/app-vite": "^1.7.3",
"@types/lodash": "^4.14.202",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.17",
"electron": "^28.2.2",
"electron-builder": "^24.13.3",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-redos": "^4.4.5",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vue": "^9.21.1",
"typescript": "^4.9.5",
"workbox-build": "^7.0.0",
"workbox-cacheable-response": "^7.0.0",
"workbox-core": "^7.0.0",
"workbox-expiration": "^7.0.0",
"workbox-precaching": "^7.0.0",
"workbox-routing": "^7.0.0",
"workbox-strategies": "^7.0.0"
},
"engines": {
"node": "^20 || ^18 || ^16",
"npm": ">= 6.13.4",
"yarn": ">= 1.21.1"
}
}