-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.68 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
{
"name": "maintainer-brief-backend",
"version": "1.0.0",
"description": "Production-grade backend for Maintainer Brief SaaS",
"main": "dist/server.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"migrate": "node -r dotenv/config dist/db/migrate.js",
"worker": "node -r dotenv/config dist/queue/worker.js",
"scheduler": "node -r dotenv/config dist/scheduler/index.js",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [
"github",
"ai",
"analysis",
"saas"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/helmet": "^11.1.1",
"@fastify/rate-limit": "^9.1.0",
"@octokit/auth-app": "^7.2.2",
"@octokit/rest": "^20.0.2",
"@supabase/supabase-js": "^2.39.3",
"@types/nodemailer": "^7.0.4",
"bullmq": "^5.1.5",
"dotenv": "^16.3.1",
"fastify": "^4.25.2",
"ioredis": "^5.3.2",
"node-cron": "^3.0.3",
"nodemailer": "^7.0.11",
"octokit": "^4.1.4",
"openai": "^4.24.1",
"pg": "^8.11.3",
"pino-pretty": "^13.1.3",
"resend": "^6.6.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}