-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1.2 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
{
"name": "@bref.sh/local-api-gateway",
"version": "1.0.20",
"description": "Run API Gateway locally against your Docker Lambda functions",
"repository": "brefphp/local-api-gateway",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && docker buildx build --load -t bref/local-api-gateway .",
"docker-publish": "npm run build && docker buildx build --push --platform linux/amd64,linux/arm64 -t bref/local-api-gateway .",
"lint": "eslint .",
"test": "vitest"
},
"author": "Matthieu Napoli",
"license": "MIT",
"devDependencies": {
"@types/aws-lambda": "^8.10.109",
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"aws-sdk-client-mock": "^2.1.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.8.0",
"supertest": "^6.3.3",
"typescript": "^4.9.3",
"vitest": "^0.29.2"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.216.0",
"body-parser": "^1.20.2",
"express": "^4.18.2",
"express-queue": "^0.0.13",
"node-fetch": "^3.3.0"
}
}