-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"name": "mcp-frontend-testing",
"version": "1.0.0",
"description": "MCP server for frontend testing with Jest and Cypress",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"start:http": "node dist/index.js --transport=http",
"start:stdio": "node dist/index.js --transport=stdio",
"dev": "ts-node-esm src/index.ts",
"test": "jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.10.2",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "^14.5.1",
"cors": "^2.8.5",
"cypress": "14.3.2",
"esbuild": "0.25.3",
"express": "5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"typescript": "5.8.3",
"zod": "3.24.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "5.0.1",
"@types/jest": "^29.5.11",
"@types/node": "22.13.11",
"@types/react": "19.1.2",
"@types/react-dom": "19.1.2",
"ts-node": "^10.9.1"
}
}