-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
43 lines (43 loc) · 1.36 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.1283.0",
"dotenv": "^16.0.3",
"email-addresses": "^5.0.0",
"fast-deep-equal": "^3.1.1",
"js-base64": "^3.7.3",
"mailparser": "^3.6.2",
"nodemailer": "^6.8.0",
"random-words": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/aws-lambda": "^8.10.109",
"@types/jest": "^29.2.4",
"@types/js-base64": "^3.3.1",
"@types/node": "^18.11.18",
"@types/nodemailer": "^6.4.7",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"aws-sdk-mock": "^5.8.0",
"babel-jest": "^29.3.1",
"eml-format": "^0.6.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"serverless-plugin-typescript": "^2.1.4",
"typescript": "^4.9.4"
}
}