forked from sigvef/hyrdle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 777 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 777 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
{
"name": "hyrdle",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"update_data": "curl 'https://api.hyre.no/community_vehicle_stations/' | jq '[.results | .[] | {id: .id, point: .vehicle_station.parking_spot.point, image: .vehicle_station.image.url}]' > src/data.json"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.14.3",
"@types/seedrandom": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"seedrandom": "^3.0.5"
},
"devDependencies": {
"@types/google.maps": "^3.50.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"typescript": "^4.8.4",
"vite": "^3.1.8"
}
}