-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 KB
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
{
"name": "orion",
"version": "1.1.0",
"description": "Finds realtime transit data and sends it to S3",
"private": true,
"main": "src/save-vehicles.ts",
"workspaces": [
"orion-lambda"
],
"scripts": {
"start": "tsx src/save-vehicles.ts",
"serve": "tsx src/server.ts",
"build": "cd orion-lambda && yarn build && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trynmaps/orion.git"
},
"author": "Eddy",
"bugs": {
"url": "https://github.com/trynmaps/orion/issues"
},
"homepage": "https://github.com/trynmaps/orion#readme",
"type": "module",
"dependencies": {
"@turf/turf": "^7.2.0",
"@types/express": "^4.17.17",
"@types/geojson": "^7946.0.16",
"@types/sqlite3": "^3.1.11",
"aws-sdk": "^2.238.1",
"axios": "^1.4.0",
"better-sqlite3": "^11.9.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"fs": "0.0.1-security",
"gtfs": "^4.5.12",
"gtfs-realtime-bindings": "^1.1.1",
"moment-timezone": "^0.5.43",
"morgan": "^1.10.0",
"prettier": "^3.1.0",
"sqlite": "^4.2.1",
"sqlite3": "^5.1.6",
"tsx": "^4.15.2",
"typescript": "^5.1.3",
"zlib": "^1.0.5"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.131",
"@types/better-sqlite3": "^7.6.4",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"lodash": "^4.17.11",
"ts-jest": "^29.1.1"
},
"prettier": {
"tabWidth": 4,
"printWidth": 120,
"arrowParens": "avoid",
"bracketSpacing": false
}
}