-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 829 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 829 Bytes
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
{
"name": "build",
"private": "true",
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.473.0",
"@aws-sdk/client-s3": "^3.473.0",
"@aws-sdk/client-sqs": "^3.473.0",
"fastq": "^1.15.0",
"sqs-consumer": "^8.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@pulumi/aws": "^6.13.3",
"@pulumi/awsx": "^2.3.0",
"@pulumi/pulumi": "^3.97.0",
"@tsconfig/node16": "^16.1.1",
"@types/aws-lambda": "^8.10.130",
"@types/node": "^20.10.4",
"esbuild": "^0.19.9",
"eslint": "^8.55.0",
"tsx": "^4.6.2",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc --noEmit && tsx ./esbuild.ts",
"lint": "biome ci src *.ts *.json",
"lint:format": "biome format --write src *.ts *.json",
"lint:check": "biome check --apply src *.ts *.json"
}
}