forked from stemmlerjs/solid-email-microservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "solid-email-microservice",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"node-mailjet": "^3.3.1",
"nodemailer": "^6.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/node": "^11.13.8",
"@types/nodemailer": "^4.6.8",
"@types/sendgrid": "^4.3.0",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"scripts": {
"build": "tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"start:dev": "nodemon",
"test": "jest",
"test:dev": "jest --watch",
"testWithCoverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stemmlerjs/solid-email-microservice.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stemmlerjs/solid-email-microservice/issues"
},
"homepage": "https://github.com/stemmlerjs/solid-email-microservice#readme"
}