-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 946 Bytes
/
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
{
"name": "blue-green-beanstalk",
"description": "",
"type": "module",
"scripts": {
"build": "ncc build src/run.ts -o dist",
"bundle-test-app": "cd test && zip bundle.zip docker-compose.yml",
"dev": "tsx --env-file=.env src/run.ts",
"test": "vitest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"yaml": "^2.6.1"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@aws-sdk/client-auto-scaling": "^3.716.0",
"@aws-sdk/client-cloudformation": "^3.716.0",
"@aws-sdk/client-ec2": "^3.716.0",
"@aws-sdk/client-elastic-beanstalk": "^3.716.0",
"@aws-sdk/client-elastic-load-balancing-v2": "^3.716.0",
"@aws-sdk/client-s3": "^3.717.0",
"@aws-sdk/client-ssm": "^3.716.0",
"ansi-styles": "^6.2.1"
}
}