-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.68 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
55
56
57
{
"name": "sveltekit-maplibre-boilerplate",
"version": "0.0.1",
"scripts": {
"dev": "vite dev",
"build": "rimraf build && vite build",
"package": "svelte-kit package",
"preview": "vite preview",
"test": "pnpm test:vitest && pnpm test:playwright",
"test:vitest": "vitest --run --passWithNoTests",
"test:playwright": "playwright test",
"coverage": "vitest run --coverage --passWithNoTests",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prepare": "lefthook install",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.9.1",
"@sveltejs/vite-plugin-svelte": "^5.0.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.6",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"lefthook": "^1.9.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"rimraf": "^6.0.1",
"svelte": "^5.10.0",
"svelte-check": "^4.1.1",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vitest": "^2.1.8"
},
"type": "module",
"dependencies": {
"maplibre-gl": "^4.7.1"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^9.0.0"
}
}