-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.52 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
{
"name": "episoder",
"version": "1.0.0",
"description": "Post-processing of podwhisperer transcripts to create a website PR",
"scripts": {
"test:lint": "eslint .",
"test:unit": "vitest run --coverage",
"test": "npm run test:lint && npm run test:unit",
"build": "tsc",
"audit": "npm audit --omit dev",
"prepare": "husky install"
},
"keywords": [],
"author": "fourTheorem Ltd.",
"license": "MIT",
"dependencies": {
"@aws-lambda-powertools/logger": "^1.14.0",
"@aws-lambda-powertools/metrics": "^1.14.0",
"@aws-lambda-powertools/tracer": "^1.14.0",
"@aws-sdk/client-bedrock-runtime": "^3.436.0",
"@aws-sdk/client-s3": "^3.436.0",
"@aws-sdk/client-ssm": "^3.436.0",
"@aws-sdk/lib-storage": "^3.245.0",
"@middy/core": "^3.6.2",
"octokit": "^3.1.2",
"simple-git": "^3.20.0"
},
"devDependencies": {
"@aws-sdk/types": "^3.226.0",
"@smithy/util-stream": "^2.0.17",
"@types/aws-lambda": "^8.10.109",
"@types/ffmpeg": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitest/coverage-c8": "^0.29.2",
"aws-sdk-client-mock": "^3.0.0",
"eslint": "^8.31.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^26.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.29.2",
"yargs": "^17.7.2"
}
}