-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 1.19 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
{
"name": "lambda-dispatch",
"version": "1.0.0",
"description": "This performs reverse routing with Lambda functions, where the Lambda functions continue running and call back to the router to pickup requests. This allows explicit control and determination of the number of available execution environments for the Lambda functions, allowing for a more predictable and consistent performance profile by mostly avoiding requests waiting for cold starts.",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"private": true,
"workspaces": {
"packages": [
"src/cdk-stack",
"src/cdk-construct",
"src/demo-app"
]
},
"devDependencies": {
"aws-cdk-lib": "2.159.1",
"constructs": "10.3.0",
"wsrun": "^5.2.4"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"build:demo-app": "yarn workspace @pwrdrvr/lambda-dispatch-demo-app build",
"start:demo-app": "NUMBER_OF_WORKERS=${NUMBER_OF_WORKERS:-1} yarn workspace @pwrdrvr/lambda-dispatch-demo-app start:app",
"test": "yarn workspace @pwrdrvr/lambda-dispatch-cdk test && yarn workspace @pwrdrvr/lambda-dispatch-cdk-stack test"
},
"author": "",
"license": "MIT"
}