-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.53 KB
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
{
"name": "aws-development-with-localstack",
"version": "0.1.0",
"bin": {
"app": "bin/app.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "eslint lib/**/*.ts",
"format": "eslint lib/**/*.ts --fix",
"cdk": "cdklocal",
"deploy": "cdklocal deploy",
"bootstrap": "cdklocal bootstrap aws://unknown-account/us-west-2",
"destroy": "cdklocal destroy",
"seed": "npx ts-node seed/index.ts",
"migrate": "npx ts-node scripts/migrationModels/migrationScript.ts"
},
"devDependencies": {
"@aws-cdk/assert": "1.117.0",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"@types/lodash": "^4.14.175",
"aws-cdk": "^1.124.0",
"eslint": "^7.32.0",
"jest": "^26.4.2",
"prettier": "^2.4.1",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "~3.9.7",
"husky": "^7.0.2"
},
"dependencies": {
"@aws-cdk/aws-dynamodb": "1.117.0",
"@aws-cdk/aws-iam": "1.117.0",
"@aws-cdk/aws-kinesis": "1.117.0",
"@aws-cdk/aws-kinesisfirehose": "1.117.0",
"@aws-cdk/aws-kinesisfirehose-destinations": "1.117.0",
"@aws-cdk/aws-s3": "1.117.0",
"@aws-cdk/aws-sns": "1.117.0",
"@aws-cdk/aws-sns-subscriptions": "1.117.0",
"@aws-cdk/aws-sqs": "1.117.0",
"@aws-cdk/core": "1.117.0",
"@aws-sdk/client-dynamodb": "^3.32.0",
"@aws-sdk/util-dynamodb": "^3.32.0",
"lodash": "^4.17.21",
"axios": "^0.22.0"
}
}