-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.33 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
73
74
75
76
{
"name": "@boostercloud/rocket-kafka-aws-infrastructure",
"version": "1.0.9",
"description": "Booster rocket to integrate a self managed Kafka cluster with your Booster Application",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint:check": "eslint --ext '.js,.ts' **/*.ts",
"lint:fix": "eslint --quiet --fix --ext '.js,.ts' **/*.ts",
"compile": "tsc -b tsconfig.json",
"postcompile": "cp -R src/lambdas/node_modules dist/lambdas",
"postinstall": "npm --prefix src/lambdas install",
"clean": "rimraf ./dist tsconfig.tsbuildinfo",
"prepack": "tsc -b tsconfig.json",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/boostercloud/rocket-kafka-aws-infrastructure.git"
},
"keywords": [
"booster",
"kafka",
"cloud",
"ddd",
"event-driven"
],
"author": "Booster Cloud",
"homepage": "https://booster.cloud",
"license": "Apache-2.0",
"publishConfig": {
"access": "restricted"
},
"dependencies": {
"@aws-cdk/aws-dynamodb": "1.91.0",
"@aws-cdk/aws-ec2": "1.91.0",
"@aws-cdk/aws-events": "1.91.0",
"@aws-cdk/aws-iam": "1.91.0",
"@aws-cdk/aws-lambda": "1.91.0",
"@aws-cdk/aws-lambda-event-sources": "1.91.0",
"@aws-cdk/aws-secretsmanager": "1.91.0",
"@aws-cdk/cloudformation-include": "1.91.0",
"@aws-cdk/core": "1.91.0"
},
"devDependencies": {
"@boostercloud/framework-core": "0.16.2",
"@boostercloud/framework-provider-aws-infrastructure": "0.16.2",
"@boostercloud/framework-types": "0.16.2",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^8.2.0",
"@types/node": "14.14.20",
"@types/sinon": "^7.5.1",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"aws-sdk": "2.764.0",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.2",
"faker": "5.1.0",
"metadata-booster": "0.3.1",
"mocha": "^8.2.1",
"nyc": "^15.0.1",
"prettier": "^1.19.1",
"sinon": "9.2.3",
"sinon-chai": "^3.5.0",
"ts-node": "^8.6.2",
"typescript": "3.9.4"
}
}