-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
75 lines (75 loc) · 1.93 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
{
"name": "@henrist/cdk-cloudfront-auth",
"version": "0.0.0-development",
"description": "CDK Constructs for adding authentication for a CloudFront Distribution",
"repository": {
"type": "git",
"url": "https://github.com/henrist/cdk-cloudfront-auth"
},
"scripts": {
"build": "rimraf dist && webpack && tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "npm run build && husky install",
"semantic-release": "semantic-release"
},
"keywords": [
"cdk",
"cloudfront",
"authentication"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"dist/**/*",
"lib/**/*"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@aws-cdk/assert": "2.68.0",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@types/aws-lambda": "8.10.141",
"@types/cookie": "0.6.0",
"@types/jest": "29.5.12",
"@types/jsonwebtoken": "8.5.9",
"@types/node": "18.19.39",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"aws-cdk-lib": "2.76.0",
"aws-sdk": "2.1430.0",
"axios": "1.7.4",
"constructs": "10.3.0",
"cookie": "0.7.0",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "4.2.1",
"html-loader": "4.2.0",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-cdk-snapshot": "2.2.2",
"jsonwebtoken": "9.0.0",
"jwks-rsa": "3.1.0",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"semantic-release": "19.0.5",
"ts-jest": "29.2.2",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "4.9.5",
"webpack": "5.94.0",
"webpack-cli": "4.10.0"
},
"dependencies": {
"@henrist/cdk-cross-region-params": "^2.0.0",
"@henrist/cdk-lambda-config": "^2.1.0"
},
"peerDependencies": {
"aws-cdk-lib": "^2.0.0"
}
}