-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"private": true,
"name": "e-payment",
"version": "0.1.0",
"bin": {
"e-payment": "bin/e-payment.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk"
},
"devDependencies": {
"@aws-cdk/assert": "^1.51.0",
"@aws-cdk/aws-dynamodb": "^1.51.0",
"@aws-cdk/aws-iam": "^1.51.0",
"@aws-cdk/aws-lambda": "^1.51.0",
"@aws-cdk/aws-lambda-nodejs": "^1.51.0",
"@aws-cdk/aws-secretsmanager": "^1.51.0",
"@aws-cdk/aws-stepfunctions": "^1.51.0",
"@aws-cdk/aws-stepfunctions-tasks": "^1.51.0",
"@types/aws-lambda": "^8.10.58",
"@types/aws-sdk": "^2.7.0",
"@types/jest": "^25.2.1",
"@types/node": "^14.0.20",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"aws-cdk": "^1.176.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^29.1.2",
"prettier": "^2.0.5",
"ts-jest": "^25.3.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"dependencies": {
"@aws-cdk/core": "^1.51.0",
"source-map-support": "^0.5.16",
"stripe": "^8.69.0"
}
}