forked from teambtcmap/btcmap.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.67 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.67 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
{
"name": "btcmap",
"version": "1.0.0",
"private": true,
"description": "Easily find places to spend sats anywhere on the planet.",
"repository": "https://github.com/teambtcmap/btcmap.org",
"author": "secondl1ght <secondl1ght@protonmail.com>",
"license": "AGPL-3.0",
"type": "module",
"scripts": {
"build": "vite build",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev --host",
"format": "biome check src",
"format:fix": "biome format --write src",
"lint": "biome check src",
"lint:fix": "biome check --write src",
"prepare": "husky",
"preview": "vite preview",
"test": "vitest",
"typecheck": "tsc --project ./tsconfig.json --noEmit --pretty"
},
"lint-staged": {
"*.{js,ts,svelte}": [
"biome check --write --no-errors-on-unmatched"
],
"*.{json,css}": [
"biome check --write --no-errors-on-unmatched"
]
},
"dependencies": {
"@mapbox/geojson-rewind": "^0.5.2",
"@maplibre/maplibre-gl-leaflet": "^0.1.3",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/svelte-table": "^8.21.3",
"@zerodevx/svelte-toast": "^0.9.6",
"axios": "^1.13.6",
"axios-retry": "^4.5.0",
"chart.js": "^4.5.1",
"d3-geo": "^3.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.3",
"globals": "^17.4.0",
"husky": "^9.1.7",
"i18n-iso-countries": "^7.14.0",
"js-confetti": "^0.13.1",
"leaflet": "^1.9.4",
"leaflet.featuregroup.subgroup": "^1.0.2",
"leaflet.locatecontrol": "^0.89.0",
"leaflet.markercluster": "^1.5.3",
"localforage": "^1.10.0",
"maplibre-gl": "^4.7.1",
"marked": "^17.0.5",
"opening_hours": "^3.12.0",
"qrcode": "^1.5.4",
"svelte-i18n": "^4.0.1",
"svelte-outclick": "^3.7.1",
"svelte-time": "^1.1.0",
"svg-captcha": "^1.4.0",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@iconify/svelte": "^4.2.0",
"@playwright/test": "^1.58.2",
"@sveltejs/adapter-netlify": "^6.0.4",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/postcss": "^4.2.2",
"@tailwindcss/vite": "^4.2.2",
"@types/d3-geo": "^3.1.0",
"@types/dompurify": "^3.2.0",
"@types/geojson": "^7946.0.16",
"@types/leaflet": "1.9.21",
"@types/leaflet.featuregroup.subgroup": "^1.0.4",
"@types/leaflet.markercluster": "^1.5.6",
"@types/node": "^25.5.0",
"@types/qrcode": "^1.5.6",
"jsdom": "^29.0.1",
"lint-staged": "^16.4.0",
"postcss": "^8.5.8",
"svelte": "^4.2.20",
"svelte-check": "^4.4.5",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"vite": "^5.4.21",
"vitest": "^3.2.4"
},
"packageManager": "yarn@4.12.0"
}