-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "aws-cdk-pure-hoc",
"version": "1.7.31",
"description": "Purely Functional High Order Cloud Components with AWS CDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint lib/*.ts",
"test": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"clean": "rm -Rf lib && rm -Rf node_modules"
},
"keywords": [
"aws",
"cdk",
"pure",
"functional",
"infrastructure-as-code",
"hoc",
"high-order components"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fogfish/aws-cdk-pure.git"
},
"dependencies": {
"@aws-cdk/assert": "*",
"@aws-cdk/aws-apigateway": "*",
"@aws-cdk/aws-certificatemanager": "*",
"@aws-cdk/aws-cloudfront": "*",
"@aws-cdk/aws-iam": "*",
"@aws-cdk/aws-lambda-event-sources": "*",
"@aws-cdk/aws-route53": "*",
"@aws-cdk/aws-route53-targets": "*",
"@aws-cdk/aws-s3": "*",
"@aws-cdk/aws-secretsmanager": "*",
"@aws-cdk/core": "*",
"@types/node": "16.11.1",
"aws-cdk-pure": "*"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}