-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
81 lines (81 loc) · 2.62 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
{
"name": "dormsoup-daemon",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"start": "tsx src/server.ts",
"relay": "tsx src/scripts/localRelay.ts",
"llm": "tsx src/llm.ts",
"testEmailToEventsPrompt": "tsx src/scripts/testEmailToEventsPrompt.ts",
"testEventToTagsPrompt": "tsx src/scripts/testEventToTagsPrompt.ts",
"parseEmailFromFile": "tsx src/scripts/parseEmailFromFile.ts",
"deleteAllEvents": "tsx src/scripts/deleteAllEvents.ts",
"deleteAllEmails": "tsx src/scripts/deleteAllEmails.ts",
"oneOffTask": "tsx src/scripts/oneOffTask.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"create-test": "tsx src/scripts/createTestEvent.ts",
"TestEmailsToDatabase": "tsx src/scripts/TestEmailsToDatabase.ts"
},
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Dormsoup/dormsoup-daemon.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dormsoup/dormsoup-daemon/issues"
},
"homepage": "https://github.com/Dormsoup/dormsoup-daemon#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@tsconfig/node18": "^2.0.1",
"@types/dedent": "^0.7.0",
"@types/express": "^4.17.17",
"@types/html-to-text": "^9.0.0",
"@types/http-status-codes": "^1.2.0",
"@types/imapflow": "^1.0.12",
"@types/mailparser": "^3.4.0",
"@types/node": "^18.15.13",
"@types/nodemailer": "^6.4.9",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.7",
"prisma": "^4.14.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@azure/msal-node": "^1.17.1",
"@azure/msal-node-extensions": "^1.0.0-alpha.34",
"@google-cloud/local-auth": "2.1.0",
"@prisma/client": "^4.14.0",
"crypto": "^1.0.1",
"dedent": "^0.7.0",
"dotenv": "^16.0.3",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"filenamify": "^6.0.0",
"google-auth-library": "8.9.0",
"googleapis": "105",
"html-to-text": "^9.0.5",
"http-proxy-middleware": "^2.0.6",
"http-status-codes": "^2.2.0",
"imapflow": "^1.0.128",
"jimp": "^0.22.10",
"limiter-es6-compat": "^2.1.2",
"mailparser": "^3.6.4",
"nodemailer": "^6.9.4",
"nodemailer-ntlm-auth": "^1.0.4",
"open": "^9.1.0",
"openai": "^3.2.1",
"puppeteer": "^21.3.8",
"sanitize-filename": "^1.6.3",
"tsx": "^4.17.0"
}
}