-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.31 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "metrolink-stop",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"regenerate-gtfs-stops": "npm run gtfs-prepare && npm run gtfs-stops",
"regenerate-gtfs-lines": "npm run gtfs-prepare && npm run gtfs-lines",
"regenerate-gtfs-isochrones": "npm run gtfs-prepare && npm run gtfs-stop-times && npm run gtfs-isochrones",
"gtfs-prepare": "(cd ./data/lines; bash prepare.sh)",
"gtfs-stops": "(cd ./data/lines; NODE_OPTIONS='--experimental-json-modules' node process-stops.mjs)",
"gtfs-lines": "(cd ./data/lines; NODE_OPTIONS='--experimental-json-modules' node process-lines.mjs)",
"gtfs-stop-times": "(cd ./data/lines; Rscript calculate-stop-times.R)",
"gtfs-isochrones": "(cd ./data/lines; NODE_OPTIONS='--experimental-json-modules' node process-isochrones.mjs)",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --pretty --noEmit"
},
"pre-commit": [
"lint",
"type-check"
],
"dependencies": {
"@react-hook/media-query": "^1.1.1",
"@react-hook/resize-observer": "^1.2.6",
"@rjackson/rjds": "^0.4.0",
"esri-leaflet-vector": "^4.1.0",
"fathom-client": "^3.4.1",
"fuse.js": "^6.4.6",
"geojson-validation": "^1.0.2",
"leaflet": "^1.9.4",
"maplibre-gl": "^2.4.0",
"next": "^12.1.6",
"next-pwa": "^5.6.0",
"odata": "^1.3.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-is": "^18.1.0",
"react-leaflet": "^4.2.1",
"react-spinners": "^0.12.0",
"react-use": "^17.4.0",
"styled-components": "^5.3.5",
"swr": "^1.0.0"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.5",
"@turf/turf": "^6.5.0",
"@types/geojson": "^7946.0.10",
"@types/leaflet": "^1.9.3",
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"autoprefixer": "^10.4.13",
"csv-parse": "^5.4.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.3.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"gtfs": "^3.2.4",
"postcss": "^8.4.19",
"pre-commit": "^1.2.2",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5"
}
}