-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "toolbox-notifier",
"version": "1.0.0",
"description": "AWS Lambda for notification toolbox download event",
"author": "milkcoke",
"private": true,
"scripts": {
"build": "tsc",
"start": "ts-node src/app.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.370.0",
"@aws-sdk/client-sesv2": "^3.370.0",
"@octokit/rest": "^20.0.1",
"aws-lambda": "^1.0.7",
"axios": "^1.4.0",
"config-yml": "^0.10.3",
"dotenv": "^16.3.1",
"js-yaml": "^4.1.0",
"neverthrow": "^6.0.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.8.0"
},
"devDependencies": {
"@aws-sdk/client-ses": "^3.370.0",
"@octokit/types": "^11.1.0",
"@types/aws-lambda": "^8.10.119",
"@types/jest": "29.5.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-neverthrow": "^1.1.4",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-mock-extended": "^3.0.4",
"source-map-support": "^0.5.21",
"ts-jest": "29.1.1",
"ts-loader": "^9.4.4",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "4.2.0",
"typescript": "^5.1.6"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"rootDir": "test",
"testRegex": ".*|(\\\\.|/)(test|spec)\\\\.ts$",
"transform": {
"^.+\\.(t|j)s$": [
"ts-jest"
]
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}