forked from etienne-bondot/mailer-servicer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "mailer",
"version": "1.0.0",
"description": "A simple nodemailer abstraction",
"scripts": {
"build": "tsc --project .",
"pre-commit": "yarn test",
"start": "nodemon ./src/server.ts -L --exec babel-node --extensions \".ts\"",
"test": "yarn test:linter && yarn test:unit && yarn tsc",
"test:linter": "eslint . --ext .ts",
"test:linter:fix": "eslint . --ext .ts --fix",
"test:unit": "jest --passWithNoTests --collect-coverage",
"test:template": "tsc script/test-template.script.ts ; node script/test-template.script.js ; rm script/test-template.script.js",
"tsc": "tsc"
},
"author": "Etienne Bondot",
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/email-templates": "^8.0.2",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/nodemailer": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.10.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"nodemon": "^2.0.7",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"ts-node": "^9.1.1",
"typescript": "^4.0.3"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"email-templates": "^8.0.3",
"express": "^4.17.1",
"nodemailer": "^6.4.11",
"path": "^0.12.7",
"pug": "^3.0.1"
}
}