-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "listflow",
"version": "1.0.0",
"description": "Process listserv emails with LLM metadata extraction, queryable API, and webhook integration.",
"main": "server.js",
"engines": {
"node": "16.x"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon --watch src --exec ts-node src/server.ts",
"test": "node tests/email.test.js",
"register": "npx ts-node scripts/registerApiKey.ts"
},
"keywords": [],
"author": "Leo Stepanewk",
"license": "ISC",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.3",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.717.0",
"@aws-sdk/s3-request-presigner": "^3.717.0",
"@google/generative-ai": "^0.21.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"html-to-text": "^9.0.5",
"jsdom": "^25.0.1",
"mailparser": "^3.7.2",
"mongo-query": "^0.5.7",
"mongodb": "^6.11.0",
"mongoose": "^8.8.2",
"node-fetch": "^2.7.0",
"node-mailin": "^2.5.0",
"nodemailer": "^6.9.16",
"openai": "^4.73.0"
}
}