-
Notifications
You must be signed in to change notification settings - Fork 655
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "@aws-github-runner/termination-watcher",
"version": "1.0.0",
"main": "lambda.ts",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test nx test",
"test:watch": "NODE_ENV=test nx test --watch",
"lint": "yarn eslint src",
"build": "ncc build src/lambda.ts -o dist",
"dist": "yarn build && cd dist && zip ../termination-watcher.zip index.js",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"all": "yarn build && yarn format && yarn lint && yarn test"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/aws-lambda": "^8.10.145",
"@types/jest": "^29.5.14",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.11.0",
"@vercel/ncc": "^0.38.1",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"nock": "^13.5.4",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
},
"dependencies": {
"@aws-github-runner/aws-powertools-util": "*",
"@aws-sdk/client-ec2": "^3.679.0",
"@aws-sdk/types": "^3.679.0",
"@middy/core": "^4.7.0",
"typescript": "^5.6.3"
},
"nx": {
"includedScripts": [
"build",
"dist",
"format",
"format-check",
"lint",
"start",
"watch",
"all"
]
}
}