-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.51 KB
/
package.json
File metadata and controls
79 lines (79 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
78
79
{
"name": "lightfoot-client",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"prebuild": "node scripts/copy-wasm-files.js",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"lint:fix": "prettier --write . && eslint . --fix",
"test:unit": "vitest",
"test": "npm run test:unit -- --run && npm run test:e2e",
"test:e2e": "playwright test",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.1",
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.55.1",
"@storybook/addon-a11y": "^9.1.13",
"@storybook/addon-docs": "^9.1.13",
"@storybook/addon-svelte-csf": "^5.0.10",
"@storybook/addon-vitest": "^9.1.13",
"@storybook/sveltekit": "^9.1.13",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.43.2",
"@sveltejs/vite-plugin-svelte": "^6.2.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.18",
"@tailwindcss/vite": "^4.1.13",
"@types/geojson": "^7946.0.16",
"@types/node": "^22",
"@vitest/browser": "^3.2.4",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-storybook": "^9.1.13",
"eslint-plugin-svelte": "^3.12.4",
"globals": "^16.4.0",
"phosphor-svelte": "^3.0.1",
"playwright": "^1.55.1",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"storybook": "^9.1.13",
"svelte": "^5.39.5",
"svelte-check": "^4.3.2",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1",
"vite": "^7.1.7",
"vite-plugin-static-copy": "^3.1.4",
"vitest": "^3.2.4",
"vitest-browser-svelte": "^1.1.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"@tailwindcss/oxide"
]
},
"packageManager": "pnpm@10.19.0",
"dependencies": {
"@maplibre/maplibre-gl-geocoder": "^1.9.1",
"@nostr-dev-kit/cache-sqlite-wasm": "^0.8.2",
"@nostr-dev-kit/ndk": "^2.18.1",
"@nostr-dev-kit/svelte": "^3.0.1",
"geojson": "^0.5.0",
"maplibre-gl": "^5.9.0",
"svelte-maplibre": "^1.2.3"
}
}