-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 744 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 744 Bytes
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
{
"name": "email",
"version": "1.0.0",
"description": "Node Typescript MicroServices",
"main": "index.js",
"scripts": {
"build": "tsc .",
"start": "npm run build && node dist/index.js",
"dev": "nodemon src/index.ts"
},
"keywords": [
"typescript",
"node",
"kafka"
],
"author": "Keyur Machhi",
"license": "ISC",
"devDependencies": {
"@types/ejs": "^3.1.1",
"@types/node": "^18.11.10",
"@types/nodemailer": "^6.4.6",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"dotenv": "^16.0.3",
"ejs": "^3.1.8",
"kafkajs": "^2.2.3",
"nodemailer": "^6.8.0"
}
}