-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "community-benchmarks",
"version": "0.1.0",
"private": false,
"scripts": {
"build": "sst build",
"cover": "sst test --coverage",
"deploy": "sst deploy",
"remove": "sst remove",
"start": "sst start",
"test": "sst test"
},
"eslintConfig": {
"extends": [
"serverless-stack"
]
},
"devDependencies": {
"@serverless-stack/cli": "0.69.7",
"@serverless-stack/resources": "0.69.7",
"@tsconfig/node14": "^1.0.1",
"@types/aws-lambda": "^8.10.95",
"@types/jest": "^27.4.1",
"@types/node": "^14.18.13",
"aws-cdk-lib": "2.15.0",
"aws-sdk-client-mock": "^0.6.2",
"aws-sdk-mock": "^5.6.2",
"typesafe-dynamodb": "^0.1.8",
"typescript": "^4.6.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.76.0",
"@aws-sdk/client-lambda": "^3.76.0",
"@aws-sdk/client-s3": "^3.76.0",
"@aws-sdk/client-xray": "^3.76.0",
"@aws-sdk/lib-dynamodb": "^3.76.0",
"aws-sdk": "^2.1120.0",
"aws-xray-sdk-core": "^3.3.5",
"csvtojson": "^2.0.10"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,ts}",
"!**/.build/**",
"!**/.sst/**",
"!**/cdk.out/**",
"!**/coverage/**",
"!**/fixtures/**",
"!**/node_modules/**",
"!stacks/index.ts"
],
"setupFilesAfterEnv": [
"./jest.setup.ts"
]
},
"description": "Benchmarking the cloud using [AWS CDK](https://aws.amazon.com/cdk/) and [Serverless Stack](https://serverless-stack.com/).",
"main": "index.js",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-community-projects/community-benchmarks.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aws-community-projects/community-benchmarks/issues"
},
"homepage": "https://github.com/aws-community-projects/community-benchmarks#readme"
}