-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "private-mcp",
"version": "2.3.0",
"private": true,
"description": "PrivateMCP - Private MCP server infrastructure & backend",
"scripts": {
"build": "tsc",
"synth": "cdk synth",
"deploy": "cdk deploy",
"diff": "cdk diff",
"lint": "eslint . --ext .ts --fix",
"test": "jest",
"test:import": "jest --config jest.config.js",
"mcp-ui": "npm run dev --prefix ui",
"migrate:ddb": "npx ts-node --project tsconfig.json scripts/migrate-to-dynamodb.ts",
"migrate": "npx ts-node scripts/migrate-identity.ts"
},
"dependencies": {
"@aws-sdk/client-api-gateway": "^3.1028.0",
"@aws-sdk/client-bedrock-runtime": "^3.700.0",
"@aws-sdk/client-dynamodb": "^3.1009.0",
"@aws-sdk/client-lambda": "^3.700.0",
"@aws-sdk/client-s3": "^3.1029.0",
"@aws-sdk/client-s3vectors": "^3.700.0",
"@aws-sdk/lib-dynamodb": "^3.1009.0",
"@modelcontextprotocol/sdk": "^1.24.0",
"aws-cdk-lib": "^2.245.0",
"constructs": "^10.0.0",
"dotenv": "^17.3.1",
"source-map-support": "^0.5.21",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"aws-cdk": "^2.1108.0",
"esbuild": "^0.27.3",
"jest": "^29.7.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.0",
"typescript": "~5.6.0"
},
"overrides": {
"fast-xml-parser": ">=5.5.6"
}
}