forked from aws-samples/aws-serverless-ecommerce-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "payment-3p",
"version": "0.1.0",
"bin": {
"payment-3p": "bin/payment-3p.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"tests-cdk": "jest --projects cdk.jest.config.js",
"tests-unit": "jest --projects unit.jest.config.js",
"tests-integ": "AWS_SDK_LOAD_CONFIG=true jest --projects integ.jest.config.js",
"cdk": "cdk"
},
"dependencies": {
"@aws-cdk/assert": "1.132.0",
"@aws-cdk/aws-dynamodb": "^1.132.0",
"@aws-cdk/aws-logs": "^1.132.0",
"@aws-cdk/aws-sam": "^1.132.0",
"@aws-cdk/aws-ssm": "^1.132.0",
"@aws-cdk/core": "1.132.0",
"@types/chai": "^4.2.10",
"@types/jest": "^27.0.2",
"@types/node": "^10.17.17",
"@types/uuid": "^7.0.0",
"aws-cdk": "^1.132.0",
"aws-sdk-mock": "^5.1.0",
"axios": "^0.21.4",
"babel": "^6.23.0",
"babel-jest": "^27.2.4",
"chai": "^4.2.0",
"jest": "^27.2.4",
"jest-junit": "^13.0.0",
"source-map-support": "^0.5.16",
"ts-jest": "^27.0.5",
"ts-node": "^8.1.0",
"typescript": "^4.1.3",
"uuid": "^8.3.2"
},
"repository": "https://github.com/aws-samples/aws-serverless-ecommerce-platform",
"license": "MIT-0"
}