forked from leo-step/listflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 990 Bytes
/
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
{
"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/node": "^22.9.3",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.1",
"html-to-text": "^9.0.5",
"mailparser": "^3.7.2",
"mongo-query": "^0.5.7",
"mongodb": "^6.11.0",
"mongoose": "^8.8.2",
"node-mailin": "^2.5.0",
"nodemailer": "^6.9.16",
"openai": "^4.73.0"
}
}