-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "ipv-cri-check-hmrc-api",
"description": "",
"workspaces": [
"integration-tests",
"lambdas/*"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"unit": "jest --silent",
"test": "npm run unit --",
"test:coverage": "npm run unit -- --coverage",
"sam:validate": "cd infrastructure && sam validate && sam validate --lint",
"sam:build": "npm run sam:validate && sam build --template infrastructure/template.yaml --cached --parallel",
"deploy": "./deploy.sh"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.682.0",
"@aws-lambda-powertools/commons": "1.14.2",
"@aws-lambda-powertools/logger": "2.3.0",
"@aws-lambda-powertools/metrics": "1.14.2",
"@aws-lambda-powertools/parameters": "1.17.0",
"@aws-lambda-powertools/tracer": "1.14.2",
"@aws-sdk/client-cloudwatch-logs": "3.574.0",
"@aws-sdk/client-ssm": "3.363.0",
"esbuild": "0.23.0",
"jose": "^5.2.2"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.126",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
}
}