-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"private": true,
"name": "delay-prediction-service",
"description": "Predict delays for Herrenberg buses.",
"version": "1.0.0",
"main": "index.js",
"author": "Stadtnavi contributors",
"contributors": [
"Jannis R <mail@jannisr.de>"
],
"homepage": "https://github.com/stadtnavi/delay-prediction-service/tree/5",
"repository": "stadtnavi/delay-prediction-service",
"bugs": "https://github.com/stadtnavi/delay-prediction-service/issues",
"license": "ISC",
"keywords": [
"stadtnavi",
"opentripplanner",
"api",
"public transport",
"transit"
],
"scripts": {
"lint": "eslint .",
"start": "node index.js",
"test": "./test/index.sh"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@turf/along": "^6.3.0",
"@turf/boolean-point-in-polygon": "^6.4.0",
"@turf/distance": "^6.3.0",
"@turf/length": "^6.3.0",
"@turf/nearest-point-on-line": "^6.3.0",
"cors": "^2.8.5",
"debug": "^4.3.1",
"etag": "^1.8.1",
"gtfs-realtime-bindings": "^0.0.6",
"gtfs-rt-differential-to-full-dataset": "^2.0.0",
"gtfs-utils": "^5.0.0-alpha.2",
"luxon": "^1.27.0",
"mqtt": "^4.2.6",
"ndjson": "^2.0.0",
"pg": "^8.6.0",
"pino": "^6.11.3",
"serve-buffer": "^2.3.0",
"sorted-array-functions": "^1.3.0",
"thingsboard-telemetry-stream": "^2.0.0",
"ttl-buffer": "^1.0.0"
},
"devDependencies": {
"aedes": "^0.46.0",
"csv-stringify": "^5.6.2",
"eslint": "^7.25.0",
"execa": "^5.1.1",
"gtfs-via-postgres": "^2.9.1",
"pg-format": "^1.0.4",
"pino-pretty": "^4.8.0",
"rimraf": "^3.0.2",
"sample-gtfs-feed": "^0.10.3"
}
}