-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 980 Bytes
/
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
{
"name": "vgnmap",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"prettier": "prettier --config .prettierrc './{src,tests}/**/*.{ts,svelte,js}' --write",
"playwright": "npx playwright test",
"test:e2e:ci": "start-server-and-test preview http://localhost:4173 playwright"
},
"devDependencies": {
"@playwright/test": "1.42.1",
"@sveltejs/vite-plugin-svelte": "3.0.2",
"@tsconfig/svelte": "5.0.2",
"@types/leaflet": "1.9.8",
"@types/node": "20.11.24",
"prettier": "3.2.5",
"prettier-plugin-svelte": "3.2.2",
"sass": "1.71.1",
"start-server-and-test": "2.0.3",
"svelte": "4.2.12",
"svelte-check": "3.6.6",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vite": "5.1.5"
},
"dependencies": {
"contentful": "10.6.24",
"leaflet": "1.9.4"
}
}