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
98 lines (98 loc) · 2.87 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.87 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
{
"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": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky",
"preview": "vite preview",
"test": "vitest",
"typecheck": "tsc --project ./tsconfig.json --noEmit --pretty"
},
"lint-staged": {
"*": [
"eslint",
"prettier --check"
]
},
"dependencies": {
"@mapbox/geojson-rewind": "^0.5.2",
"@maplibre/maplibre-gl-leaflet": "^0.1.0",
"@tanstack/match-sorter-utils": "^8.19.4",
"@tanstack/svelte-table": "^8.21.3",
"@zerodevx/svelte-toast": "^0.9.6",
"axios": "^1.12.2",
"axios-retry": "^4.5.0",
"chart.js": "^4.4.9",
"d3-geo": "^3.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.5",
"globals": "^16.5.0",
"husky": "^9.1.7",
"js-confetti": "^0.13.1",
"leaflet": "^1.9.4",
"leaflet.featuregroup.subgroup": "^1.0.2",
"leaflet.locatecontrol": "0.85.1",
"leaflet.markercluster": "^1.5.3",
"localforage": "^1.10.0",
"maplibre-gl": "^4.7.1",
"marked": "^17.0.1",
"qrcode": "^1.5.4",
"svelte-eslint-parser": "^1.4.0",
"svelte-outclick": "^3.7.1",
"svelte-time": "^1.0.0",
"svg-captcha": "^1.4.0",
"tippy.js": "^6.3.7"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@iconify/svelte": "^4.2.0",
"@playwright/test": "^1.57.0",
"@sveltejs/adapter-netlify": "^5.2.2",
"@sveltejs/kit": "^2.49.0",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/vite": "^4.1.11",
"@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.3",
"@types/leaflet.locatecontrol": "^0.82.1",
"@types/leaflet.markercluster": "^1.5.5",
"@types/node": "^24.10.1",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.13.0",
"jsdom": "^27.2.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.1",
"prettier": "^3.7.3",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"svelte": "^4.2.18",
"svelte-check": "^4.3.4",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"typescript-eslint": "^8.48.0",
"vite": "^5.4.21",
"vite-plugin-icons-spritesheet": "^3.0.1",
"vitest": "^4.0.14"
}
}