-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1 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
{
"name": "email-service",
"version": "1.0.0",
"description": "Email sender microservice",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsnd --respawn --clear src/app.ts",
"build": "rimraf ./dist && tsc",
"start": "node dist/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adoptaunpeludo/email-service.git"
},
"author": "J.Alberto, Paco, Juanma, Pol",
"license": "ISC",
"bugs": {
"url": "https://github.com/Adoptaunpeludo/email-service/issues"
},
"homepage": "https://github.com/Adoptaunpeludo/email-service#readme",
"devDependencies": {
"@types/amqplib": "^0.10.4",
"@types/node": "^20.11.16",
"@types/nodemailer": "^6.4.14",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.3",
"dotenv": "^16.4.1",
"env-var": "^7.4.1",
"nodemailer": "^6.9.9"
}
}