-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.9 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "pipe-mcp-server",
"version": "1.0.0",
"description": "Developer Collaboration Context Bridge MCP Server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"start:migrate": "prisma migrate deploy && npm start",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --project=unit",
"test:integration": "vitest run --project=integration",
"test:e2e": "vitest run --project=e2e",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"db:generate": "prisma generate",
"db:migrate:dev": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:push": "prisma db push",
"db:seed": "tsx scripts/db/seed.ts",
"db:reset": "prisma migrate reset",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brownjer3/pipe.git"
},
"keywords": [
"mcp",
"developer-tools",
"collaboration",
"context-bridge"
],
"author": "Jerry Brown",
"license": "MIT",
"bugs": {
"url": "https://github.com/brownjer3/pipe/issues"
},
"homepage": "https://github.com/brownjer3/pipe#readme",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.0.14",
"@types/passport": "^1.0.17",
"@types/passport-jwt": "^4.0.1",
"@types/passport-local": "^1.0.38",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.31.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@linear/sdk": "^52.0.0",
"@notionhq/client": "^4.0.1",
"@octokit/rest": "^22.0.0",
"@prisma/client": "^6.12.0",
"@slack/events-api": "^3.0.1",
"@slack/web-api": "^7.9.3",
"@types/passport-github2": "^1.2.9",
"@types/uuid": "^10.0.0",
"bcrypt": "^6.0.0",
"bullmq": "^5.56.4",
"dotenv": "^17.2.0",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"ioredis": "^5.6.1",
"jsonwebtoken": "^9.0.2",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"prisma": "^6.12.0",
"socket.io": "^4.8.1",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"ws": "^8.18.3",
"zod": "^4.0.5"
}
}