-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
26 lines (26 loc) · 1.04 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
{
"name": "nola-transit-map",
"version": "1.0.0",
"description": "This program scrapes vehicle locations from Clever Devices' bustime product https://www.cleverdevices.com/products/bustime/ which the New Orleans RTA uses to track their bus and streetcar fleet. It scrapes all the locations in the fleet and puts them into a sqlite database.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild app/main.jsx --minify --loader:.png=dataurl --loader:.svg=dataurl --bundle --outfile=public/app.js",
"watch": "esbuild app/main.jsx --loader:.png=dataurl --loader:.svg=dataurl --bundle --outfile=public/app.js --watch"
},
"private": true,
"author": "",
"license": "MIT",
"dependencies": {
"bootstrap": "^5.2.2",
"esbuild": "^0.15.12",
"leaflet": "^1.9.2",
"leaflet-rotatedmarker": "^0.2.0",
"react": "^18.2.0",
"react-bootstrap": "^2.5.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"react-leaflet": "^4.1.0",
"react-select": "^5.5.9"
}
}