-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.51 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.51 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
{
"name": "gira",
"version": "1.2.0",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint .",
"build-app": "node scripts/build.js",
"build-app-dev": "node scripts/build.js --dev",
"install-app": "node scripts/build.js --install",
"install-app-dev": "node scripts/build.js --dev --install && vite dev --host"
},
"devDependencies": {
"@capacitor/cli": "^7.4.3",
"@fontsource/poppins": "^5.2.6",
"@playwright/test": "^1.55.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-static": "^3.0.8",
"@sveltejs/kit": "^2.49.2",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/forms": "^0.5.10",
"@types/node": "^20.19.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.21",
"baseline-browser-mapping": "^2.9.11",
"eslint": "^8.57.1",
"eslint-plugin-svelte": "^2.46.1",
"postcss": "^8.5.3",
"svelte": "^5.46.1",
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.17",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.40.0",
"vite": "^7.2.6",
"vitest": "^1.6.1"
},
"type": "module",
"dependencies": {
"@capacitor-community/background-geolocation": "^1.2.25",
"@capacitor-community/keep-awake": "^4.0.0",
"@capacitor/android": "^7.4.3",
"@capacitor/app": "^7.0.2",
"@capacitor/core": "^7.4.3",
"@capacitor/device": "^7.0.2",
"@capacitor/geolocation": "^7.1.5",
"@capacitor/ios": "^7.4.3",
"@capacitor/keyboard": "^7.0.2",
"@capacitor/local-notifications": "^7.0.2",
"@capacitor/network": "^7.0.2",
"@capacitor/preferences": "^7.0.2",
"@capacitor/screen-orientation": "^7.0.2",
"@capacitor/status-bar": "^7.0.2",
"@capacitor/toast": "^7.0.2",
"@fontsource-variable/inter": "^5.2.6",
"@fontsource-variable/roboto-mono": "^5.2.6",
"@fontsource/inter": "^5.2.6",
"@fontsource/roboto-mono": "^5.2.6",
"@mauricewegner/capacitor-navigation-bar": "^2.0.3",
"@tabler/icons-svelte": "^3.34.1",
"@types/suncalc": "^1.9.2",
"capacitor-plugin-safe-area": "^2.0.6",
"maplibre-gl": "^4.7.1",
"suncalc": "^1.9.0"
},
"trustedDependencies": [
"@sveltejs/kit",
"esbuild",
"svelte-preprocess"
]
}