-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 895 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 895 Bytes
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
{
"name": "sunside",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"build:all": "npm run prepare:airports && npm run prepare:map && npm run build:map-svg && npm run test -- --run && npm run build",
"preview": "vite preview",
"test": "vitest",
"prepare:airports": "tsx scripts/prepare-airports.ts",
"prepare:map": "tsx scripts/prepare-map.ts",
"build:map-svg": "tsx scripts/build-map-svg.ts"
},
"dependencies": {
"luxon": "^3.5.0",
"suncalc": "^1.9.0",
"svelte": "^5.0.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"csv-parse": "^6.1.0",
"topojson-client": "^3.1.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"tz-lookup": "^6.1.25",
"vite": "^5.4.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=24 <25"
}
}