-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "pelias-stitcher",
"version": "1.0.0",
"description": "Pelias API gateway which splits requests across a given instance and a second one, then stiches the responses together.",
"author": "IBI Group",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsdx build -i handler.ts utils.ts --target node",
"start": "serverless offline",
"lint": "tsdx lint *.ts",
"test": "tsdx test",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/geojson": "^7946.0.8",
"@types/jest": "^26.0.24",
"semantic-release": "^17.4.4",
"serverless": "^3.38.0",
"serverless-offline": "^13.3.2",
"tsdx": "https://github.com/ibi-group/tsdx"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@bugsnag/js": "^7.11.0",
"@bugsnag/plugin-aws-lambda": "^7.11.0",
"@conveyal/lonlat": "^1.4.1",
"@opentripplanner/geocoder": "^3.0.2",
"geolib": "^3.3.1",
"node-fetch": "^2.6.1",
"serverless-api-gateway-caching": "^1.8.1",
"serverless-plugin-typescript": "^1.1.9"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/git",
"@semantic-release/github"
]
}
}