-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.83 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "frontapp-mcp",
"version": "1.0.0",
"description": "MCP server for Frontapp integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"test": "jest",
"test:all": "node scripts/run-tests.js",
"test:integration": "node scripts/run-integration-tests.js",
"test:accounts": "node --experimental-modules tests/test-accounts.js",
"test:api": "node --experimental-modules tests/test-api.js",
"test:contacts": "node --experimental-modules tests/test-contacts.js",
"test:tags": "node --experimental-modules tests/test-tags.js",
"test:conversations": "node --experimental-modules tests/test-conversations.js",
"test:webhooks": "node --experimental-modules tests/test-webhooks.js",
"test:webhook-handlers": "node --experimental-modules tests/test-webhook-handlers.js",
"test:webhook-mock": "node --experimental-modules tests/test-webhook-mock.js",
"test:handlers": "node --experimental-modules tests/test-handlers.js",
"webhooks": "ts-node src/scripts/manageWebhooks.ts",
"generate-key": "ts-node src/scripts/generateEncryptionKey.ts",
"generate-cert": "ts-node src/scripts/generateCertificate.ts",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"check": "npm run lint && npm run format:check"
},
"keywords": [
"mcp",
"frontapp",
"llm",
"api"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^11.1.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/ajv": "^1.0.4",
"@types/chai": "^5.2.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/glob": "^8.1.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.14",
"@types/morgan": "^1.9.9",
"@types/nock": "^11.1.0",
"@types/node": "^20.9.0",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chai": "^5.2.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^10.1.1",
"jest": "^29.7.0",
"nock": "^14.0.1",
"prettier": "^3.0.3",
"supertest": "^7.1.0",
"ts-jest": "^29.2.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}