-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.03 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.03 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
{
"name": "navigatum",
"private": true,
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"type-check": "nuxt typecheck",
"type-refresh": "openapi-typescript ../openapi.yaml --output app/api_types/index.ts --export-type --immutable-types --support-array-length && pnpm run format && pnpm run lint && pnpm run type-check",
"lint": "biome lint --write --error-on-warnings . ",
"format": "biome format --write && biome check --formatter-enabled=false --linter-enabled=false --write"
},
"dependencies": {
"@fullcalendar/core": "6.1.20",
"@fullcalendar/daygrid": "6.1.20",
"@fullcalendar/list": "6.1.20",
"@fullcalendar/timegrid": "6.1.20",
"@fullcalendar/vue3": "6.1.20",
"@googlemaps/polyline-codec": "1.0.28",
"@headlessui/vue": "1.7.23",
"@mdi/js": "^7.4.47",
"@nuxt/content": "3.12.0",
"@nuxt/image": "2.0.0",
"@nuxtjs/color-mode": "4.0.0",
"@vueuse/core": "14.2.1",
"@vueuse/nuxt": "14.2.1",
"@vueuse/router": "14.2.1",
"better-sqlite3": "12.6.2",
"maplibre-gl": "5.20.1",
"maplibre-gl-indoor": "0.0.22",
"nightwind": "1.1.13",
"nuxt": "4.2.2",
"sharp": "0.34.5",
"ts-essentials": "^10.1.1",
"vue": "3.5.27",
"vue-router": "5.0.3",
"vue3-carousel": "0.17.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@nuxtjs/i18n": "10.2.3",
"@nuxtjs/tailwindcss": "6.14.0",
"@types/geojson": "7946.0.16",
"@types/nightwind": "1.0.1",
"@vue/tsconfig": "0.9.0",
"autoprefixer": "10.4.27",
"openapi-typescript": "6.7.6",
"postcss": "8.5.8",
"tailwindcss": "3.4.19",
"typescript": "5.9.3",
"vue-tsc": "3.2.6"
},
"type": "module",
"packageManager": "pnpm@10.14.0",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@parcel/watcher",
"better-sqlite3",
"esbuild",
"sharp",
"unrs-resolver"
],
"supportedArchitectures": {
"os": [
"current"
],
"cpu": [
"x64"
]
},
"overrides": {
"vite": "^8.0.0-beta.8",
"vue-router": "5.0.3"
}
}
}