-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.53 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
{
"name": "@resonatecoop/mailer",
"version": "1.0.0",
"description": "Contact Form Backend Microservice",
"main": "index.js",
"private": true,
"scripts": {
"start": "node -r ./node_modules/dotenv-safe/config ./lib/server.js",
"dev": "babel-node -r ./node_modules/dotenv-safe/config ./src/server.js",
"build": "babel src -d lib",
"run-all-tests": "npm-run-all test:*",
"test": "npm run test:lint && npm run test:deps",
"test:lint": "standard src",
"test:deps": "dependency-check --verbose --missing ./lib/**/*.js --no-dev --i dotenv-safe"
},
"keywords": [
"contact",
"mailgun"
],
"author": "Augustin Godiscal <[email protected]>",
"license": "MIT",
"dependencies": {
"@koa/cors": "^3.1.0",
"ajv": "^8.6.3",
"ajv-formats": "^2.1.1",
"bull": "^3.29.3",
"core-js": "^3.18.3",
"dotenv-safe": "^8.2.0",
"email-templates": "^8.0.8",
"hcaptcha": "^0.1.0",
"koa": "^2.13.4",
"koa-body": "^4.2.0",
"koa-compress": "^5.1.0",
"koa-json-error": "^3.1.2",
"koa-logger": "^3.2.1",
"koa-ratelimit": "^5.0.1",
"koa-session": "^6.2.0",
"nodemailer": "^6.7.0",
"nodemailer-mailgun-transport": "^2.1.3",
"regenerator-runtime": "^0.13.9",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/node": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-plugin-add-module-exports": "^1.0.4",
"dependency-check": "^4.1.0",
"standard": "^16.0.4",
"tape": "^5.0.1"
}
}