-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.81 KB
/
package.json
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
{
"name": "queering-the-map",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite dev --port 5173",
"build": "npm run fetch-data && vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"test:integration": "playwright test",
"test:unit": "vitest",
"fetch-data": "npx vite-node --options.transformMode.ssr='/.*/' src/lib/scripts/fetchData.ts",
"seed-data": "npx vite-node --options.transformMode.ssr='/.*/' src/lib/scripts/seedData.ts",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.45.2",
"@svelte-put/cloudflare-turnstile": "^0.1.3",
"@sveltejs/adapter-auto": "^3.2.2",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@types/geojson": "^7946.0.14",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@zerodevx/svelte-toast": "^0.9.5",
"eslint": "8.57",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.6",
"supabase": "^1.183.5",
"svelte": "^4.2.19",
"svelte-check": "^3.8.4",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1",
"vite": "^5.4.6",
"vite-node": "^2.0.3",
"vitest": "^2.0.3"
},
"type": "module",
"dependencies": {
"@fontsource/apfel-grotezk": "^5.0.11",
"@supabase/supabase-js": "^2.44.4",
"dotenv": "^16.4.5",
"maplibre-gl": "^4.5.0"
},
"packageManager": "[email protected]"
}