-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.43 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
48
49
50
51
52
{
"name": "postgresql-http",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"build": "tsc --build --clean && tsc",
"clean": "tsc --build --clean",
"watch": "tsc -w",
"test": "vitest run --passWithNoTests",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"dev": "tsx watch src/server.ts",
"start": "node -r source-map-support/register build/server.js"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/aws-lambda": "^8.10.161",
"@types/node": "^24.11.0",
"@types/pg": "^8.16.0",
"@types/source-map-support": "^0.5.10",
"@vitest/eslint-plugin": "^1.6.9",
"dotenv": "^17.3.1",
"eslint": "^9.39.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-promise": "^7.2.1",
"source-map-support": "^0.5.21",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.18"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.31.0",
"@hono/mcp": "^0.2.4",
"@hono/node-server": "^1.19.10",
"@modelcontextprotocol/sdk": "^1.27.1",
"hono": "^4.12.4",
"pg": "^8.19.0",
"uuid": "^13.0.0",
"zod": "^4.3.6"
}
}