forked from fterh/heimdall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.35 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
{
"scripts": {
"deploy": "echo \"Use yarn run deploy-dev or yarn run deploy-prod instead\"",
"deploy-dev": "yarn run predeploy && serverless deploy && yarn run postdeploy",
"deploy-prod": "STAGE=prod yarn run deploy-dev",
"predeploy": "tsc lib/env.ts lib/config.ts",
"postdeploy": "rm lib/env.js lib/config.js",
"lint": "tsc --strict --noEmit && eslint \"**/*.ts\"",
"test": "jest"
},
"dependencies": {
"aws-sdk": "^2.605.0",
"dotenv": "^8.2.0",
"email-addresses": "^3.1.0",
"fast-deep-equal": "^3.1.1",
"js-base64": "^2.5.1",
"mailparser": "^2.7.7",
"nodemailer": "^6.4.2",
"random-words": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/aws-lambda": "^8.10.39",
"@types/jest": "^25.1.2",
"@types/js-base64": "^2.3.1",
"@types/node": "^13.1.7",
"@types/nodemailer": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"aws-sdk-mock": "^5.0.0",
"babel-jest": "^25.1.0",
"eml-format": "^0.6.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"serverless-plugin-typescript": "^1.1.9",
"typescript": "^3.7.5"
}
}