-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.85 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
53
54
55
56
57
58
59
60
61
{
"name": "lambda-form",
"version": "1.5.0",
"description": "A form submission handler using Serverless and AWS Lambda",
"main": "handler.js",
"scripts": {
"deploy": "sls deploy && sls s3deploy",
"deploy-prod": "sls deploy --stage prod && sls s3deploy --stage prod",
"lint": "eslint --ext .js,.jsx ./",
"lint-fix": "eslint --fix --ext .js,.jsx ./",
"logs": "sls logs -f formPostHandler -t",
"serverless": "node_modules/.bin/serverless",
"sls": "node_modules/.bin/serverless",
"service-info": "sls info",
"local": "node_modules/.bin/serverless offline --stage dev",
"prod": "pm2 start pm2.json --no-daemon"
},
"author": "Tom Noogen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/niiknow/lambda-form.git"
},
"dependencies": {
"busboy": "^0.3.1",
"consolidate": "^0.16.0",
"debug": "^4.1.1",
"mjml": "^4.6.3",
"nodemailer": "^6.4.17",
"nunjucks": "^3.2.2",
"recaptcha2": "^1.3.3",
"source-map-support": "^0.5.19",
"temp": "^0.9.4",
"uuid": "^8.3.2",
"zlib": "^1.0.5"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/register": "^7.10.5",
"@babel/runtime": "^7.11.2",
"aws-sdk": "^2.727.1",
"babel-loader": "^8.1.0",
"babel-plugin-source-map-support": "^2.1.2",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"serverless": "^2.17.0",
"serverless-apigw-binary": "^0.4.4",
"serverless-offline": "^6.8.0",
"serverless-webpack": "^5.3.3",
"webpack": "^5.11.1",
"webpack-node-externals": "^2.5.2"
}
}