forked from dheerajoruganty/simple-mcp-server-on-lambda
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 934 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 934 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
{
"devDependencies": {
"@types/aws-lambda": "^8.10.149",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.799.0",
"@aws-sdk/client-cloudwatch-logs": "^3.787.0",
"@codegenie/serverless-express": "^4.12.0",
"@modelcontextprotocol/sdk": "^1.11.0",
"@types/jsonwebtoken": "^9.0.9",
"express": "^5.1.0",
"https-proxy-agent": "^7.0.6",
"jose": "^6.0.10",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.2.0",
"log4js": "^6.9.1",
"node-fetch": "^3.3.2",
"zod": "^3.24.3"
},
"scripts": {
"start": "tsx src/server.ts",
"client": "tsx src/client.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
}
}