-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.59 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
{
"dependencies": {
"@aws-lambda-powertools/logger": "^1.2.1",
"@aws-lambda-powertools/metrics": "^1.2.1",
"@aws-lambda-powertools/tracer": "^1.2.1",
"@aws-sdk/client-cognito-identity-provider": "^3.370.0",
"@aws-sdk/client-dynamodb": "^3.370.0",
"@aws-sdk/client-sfn": "^3.370.0",
"@aws-sdk/lib-dynamodb": "^3.204.0",
"@middy/core": "^3.5.0",
"@middy/http-cors": "^3.6.0",
"@middy/http-error-handler": "^3.6.2",
"@middy/http-json-body-parser": "^3.6.2",
"@middy/http-router": "^3.6.2",
"@middy/validator": "^3.6.2",
"esbuild": "^0.15.10",
"http-errors": "^2.0.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "^3.370.0",
"@babel/preset-env": "^7.19.4",
"aws-sdk-client-mock": "^2.0.0",
"aws-sdk-client-mock-jest": "^2.0.0",
"babel-jest": "^29.2.2",
"jest": "^29.4.2",
"node-yaml": "4.0.1",
"supertest": "^6.3.1",
"toml": "^3.0.0"
},
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
}
},
"scripts": {
"deploy": "sam build && sam deploy",
"deploy-guided": "sam build && sam deploy --guided",
"echo-version": "echo v`node -e \"console.log(require('node-yaml').readSync('template-flipped.yaml').Mappings.Solution.Constants.Version)\"`",
"flip": "cfn-flip -c -n -l template.yaml template-flipped.yaml",
"format-version": "npm run flip;VERSION=$(npm run echo-version --silent);sed -i '' -e \"3s/.*/Description: Frontend Service Discovery on AWS (uksb-1tthgi8k7) (version:$VERSION)/\" template.yaml",
"test": "jest"
},
"type": "module"
}