This commit is contained in:
Katharina 2026-07-10 10:54:05 +02:00
commit 28a45440aa
18 changed files with 4276 additions and 0 deletions

23
package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "multitrain",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Multi-origin/multi-destination train connection search",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/main.ts",
"start": "node dist/main.js"
},
"dependencies": {
"@fastify/static": "^9.3.0",
"@motis-project/motis-fptf-client": "^6.5.2",
"fastify": "^5.10.0"
},
"devDependencies": {
"@types/hafas-client": "^6.3.1",
"@types/node": "^26.1.1",
"tsx": "^4.23.0",
"typescript": "^7.0.2"
}
}