-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "nodemailserver",
"version": "1.0.0",
"description": "",
"main": "build/main.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only ./src/main.ts",
"start": "node build/main.js",
"test": "node test.js",
"lint": "biome format --write .",
"build": "tsc -p ."
},
"dependencies": {
"@types/express": "^5.0.3",
"@types/quoted-printable": "^1.0.2",
"argon2": "^0.44.0",
"axios": "^1.12.2",
"cheerio": "^1.1.2",
"colorette": "^2.0.20",
"dkim-signer": "^0.2.2",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"express-rate-limit": "^8.1.0",
"glob": "^11.0.1",
"googleapis": "^146.0.0",
"ics": "^3.8.1",
"ioredis": "^5.8.1",
"mailauth": "^4.8.2",
"mailparser": "^3.7.2",
"mime-types": "^2.1.35",
"mimetext": "^3.0.27",
"moment": "^2.30.1",
"node-forge": "^1.3.1",
"nodemailer-smtp-transport": "^2.7.4",
"openpgp": "^6.2.2",
"quoted-printable": "^1.0.1",
"reflect-metadata": "^0.2.2",
"smtp-server": "^3.13.6",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/dkim-signer": "^0.2.5",
"@types/mailparser": "^3.4.5",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.13.1",
"@types/node-forge": "^1.3.11",
"@types/nodemailer-express-handlebars": "^4.0.5",
"@types/smtp-server": "^3.5.10",
"readline": "^1.3.0"
}
}