-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "email-reply",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"dev": "yarn clean && yarn lint && yarn codegen && yarn build && node dist/index.js",
"clean": "rimraf dist/",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts",
"pretest": "yarn lint",
"codegen": "kysely-codegen",
"test": "jest"
},
"engines": {
"node": ">=20.14.9"
},
"resolutions": {
"strip-ansi": "6.0.1"
},
"devDependencies": {
"@types/imapflow": "^1.0.18",
"@types/jest": "^29.5.11",
"@types/mailparser": "^3.4.4",
"@types/node": "^20.14.9",
"@types/nodemailer": "^6.4.15",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.5.0",
"eslint-plugin-prettier": "^5.1.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"kysely-codegen": "^0.15.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"imapflow": "^1.0.162",
"kysely": "^0.27.3",
"mailparser": "^3.7.1",
"mysql2": "^3.10.2",
"nodemailer": "^6.9.14",
"openai": "^4.52.3",
"pino": "^9.2.0",
"pino-pretty": "^11.2.1",
"uuid": "^10.0.0"
}
}