-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.26 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
{
"name": "send-email",
"version": "1.0.0",
"description": "Api to send email",
"main": "index.ts",
"author": "Natalia Braz <naabraz@gmail.com>",
"license": "MIT",
"scripts": {
"start:dev": "nodemon --watch 'src/' --exec 'ts-node index.ts' -e ts",
"test": "jest",
"lint": "tslint -c tslint.json --project ."
},
"_moduleAliases": {
"config": "config",
"controller": "src/controller",
"helpers": "helpers",
"service": "src/service",
"types": "src/types"
},
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"google-auth-library": "^6.1.3",
"module-alias": "^2.2.2",
"nodemailer": "^6.4.10",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/gapi": "^0.0.39",
"@types/node": "^14.14.6",
"@types/nodemailer": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "7.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.21.2",
"husky": "^4.3.0",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"prettier": "2.1.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
}
}