-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.63 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": "currency-exchange-notifier",
"version": "1.0.0",
"author": "tmsf",
"license": "ISC",
"description": "simple script that periodically sends email with exchange rates",
"engineStrict": true,
"engines": {
"node": "^12"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"scripts": {
"deploy": "sls deploy",
"docs": "esdoc",
"lint": "standardx **/*.ts --env jest | standard-reporter --stylish",
"lint:fix": "standardx **/*.ts --env jest --fix",
"start": "sls offline start --noPrependStageInUrl",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/aws-lambda": "8.10.61",
"@types/jest": "26.0.10",
"@types/node": "14.6.0",
"@typescript-eslint/eslint-plugin": "3.10.1",
"@typescript-eslint/parser": "3.10.1",
"esdoc": "1.1.0",
"esdoc-standard-plugin": "1.0.0",
"esdoc-typescript-plugin": "1.0.1",
"jest": "26.4.2",
"jest-junit": "11.1.0",
"serverless": "1.79.0",
"serverless-offline": "6.4.0",
"serverless-pseudo-parameters": "2.5.0",
"serverless-webpack": "5.3.4",
"standard-reporter": "1.0.5",
"standardx": "5.0.0",
"ts-jest": "26.3.0",
"ts-loader": "8.0.3",
"typescript": "4.0.2",
"webpack": "4.44.1",
"webpack-node-externals": "2.5.2"
},
"dependencies": {
"aws-sdk": "2.771.0",
"axios": "0.21.1",
"nodemailer": "6.4.13",
"source-map-support": "0.5.19"
}
}