-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (49 loc) · 1.06 KB
/
package.json
File metadata and controls
50 lines (49 loc) · 1.06 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
{
"name": "mailer-api",
"version": "0.0.1",
"private": true,
"type": "module",
"description": "A simple API for sending emails using Node.js and Nodemailer.",
"main": "server.js",
"author": "Sundar Karthik S",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itsmessk/Mailer-API.git"
},
"keywords": [
"nodejs",
"nodemailer",
"api",
"email"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"body-parser": "^2.2.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.5.0",
"express": "~4.16.1",
"googleapis": "^148.0.0",
"http-errors": "~1.6.3",
"mongoose": "^8.14.2",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.2",
"node-appwrite": "^16.0.0",
"nodemailer": "^7.0.3",
"pug": "2.0.0-beta11"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"eslint": "^9.26.0",
"globals": "^16.0.0",
"nodemon": "^3.1.10"
}
}