-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "email",
"version": "1.0.0",
"description": "",
"scripts": {
"start:offline": "sls offline",
"deploy": "sls deploy",
"deploy:function": "sls deploy function -f email",
"prettier:check": "prettier --check \"./*.ts\" \"./**/*.ts\"",
"prettier:write": "prettier --write \"./*.ts\" \"./**/*.ts\"",
"eslint:check": "eslint . --ext .ts",
"eslint:write": "eslint . --ext .ts --fix",
"lint": "npm run eslint:check && npm run prettier:check",
"format": "npm run eslint:write && npm run prettier:write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/upframe/email.git"
},
"author": "Mathis Bullinger",
"license": "ISC",
"bugs": {
"url": "https://github.com/upframe/email/issues"
},
"homepage": "https://github.com/upframe/email#readme",
"dependencies": {
"@babel/runtime": "^7.9.6",
"@sendgrid/mail": "^7.2.3",
"core-js": "^3.6.5",
"knex": "^0.21.1",
"markdown-it": "^11.0.0",
"mjml": "^4.6.3",
"moment-timezone": "^0.5.31",
"mustache": "^4.0.1",
"node-email-reply-parser": "^0.1.1",
"node-fetch": "^2.6.0",
"pg": "^8.1.0",
"source-map-support": "^0.5.19",
"spacetime-informal": "^0.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-typescript": "^7.9.0",
"@types/node": "^13.13.5",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^2.32.0",
"@typescript-eslint/parser": "^2.32.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-plugin-source-map-support": "^2.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"dotenv": "^8.2.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.5",
"serverless": "^1.70.1",
"serverless-offline": "^6.1.5",
"serverless-offline-sns": "^0.68.0",
"serverless-step-functions": "^2.21.1",
"serverless-webpack": "^5.3.2",
"ts-loader": "^7.0.4",
"typescript": "^3.8.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
}
}