-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 971 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 971 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
27
28
29
30
31
32
33
34
35
36
37
{
"name": "transit-helper",
"version": "1.0.0",
"main": "src/index.ts",
"type": "module",
"files": [
"src/index.ts"
],
"scripts": {
"start": "bun src/server-to-test.ts",
"deploy": "bunx webpack",
"build": "tsc -p tsconfig.json",
"cbs": "bun utilities/createBusSvgs.js",
"addInfo": "bun utilities/addInfoToStops.js",
"getRoutes": "bun utilities/getStopsForEachTrainLine.js",
"sB": "bun utilities/serveBundle.js"
},
"author": "ZarmDev",
"license": "Apache-2.0",
"description": "useful functions to handle train data",
"dependencies": {
"@types/node": "^20.14.9",
"gtfs-realtime-bindings": "^1.1.1"
},
"devDependencies": {
"@svgdotjs/svg.js": "^3.2.4",
"@types/express": "^4.17.21",
"express": "^4.19.2",
"jsdom": "^24.1.1",
"svgdom": "^0.1.19",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"dotenv": "^16.4.5"
}
}