-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 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
{
"name": "swa",
"private": true,
"version": "0.0.1",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "npm run build && wrangler pages dev",
"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",
"deploy": "npm run build && wrangler pages deploy",
"cf-typegen": "wrangler types src/worker-configuration.d.ts"
},
"devDependencies": {
"@picocss/pico": "2.1.1",
"@sveltejs/adapter-auto": "7.0.1",
"@sveltejs/adapter-cloudflare": "7.2.8",
"@sveltejs/kit": "2.53.3",
"@sveltejs/vite-plugin-svelte": "6.2.4",
"@types/luxon": "3.7.1",
"picomatch": "4.0.3",
"sass-embedded": "1.97.3",
"svelte": "5.53.5",
"svelte-check": "4.4.4",
"typescript": "5.9.3",
"vite": "7.3.1",
"wrangler": "4.69.0"
},
"dependencies": {
"chart.js": "4.5.1",
"chartjs-adapter-luxon": "1.3.1",
"luxon": "3.7.2",
"maplibre-gl": "5.19.0"
},
"overrides": {
"cookie": "1.1.1"
}
}