-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1018 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1018 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
36
37
{
"name": "node-express-mcp-v2-app",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "node --import ./instrument.mjs dist/app.js",
"test": "playwright test",
"clean": "npx rimraf node_modules pnpm-lock.yaml",
"test:build": "pnpm install && pnpm build",
"test:assert": "pnpm test"
},
"dependencies": {
"@cfworker/json-schema": "^4.0.0",
"@modelcontextprotocol/server": "2.0.0-alpha.2",
"@modelcontextprotocol/node": "2.0.0-alpha.2",
"@sentry/node": "latest || *",
"@types/express": "^4.17.21",
"@types/node": "^18.19.1",
"express": "^4.21.2",
"typescript": "~5.0.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@modelcontextprotocol/client": "2.0.0-alpha.2",
"@playwright/test": "~1.56.0",
"@sentry-internal/test-utils": "link:../../../test-utils",
"@sentry/core": "latest || *"
},
"type": "module",
"volta": {
"extends": "../../package.json"
},
"sentryTest": {
"optional": true
}
}