-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
164 lines (164 loc) · 5.31 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "cdk-nextjs",
"description": "Deploy Next.js apps on AWS with CDK",
"repository": {
"type": "git",
"url": "https://github.com/cdklabs/cdk-nextjs.git"
},
"scripts": {
"build": "pnpm dlx projen build",
"bump": "pnpm dlx projen bump",
"bundle": "pnpm dlx projen bundle",
"bundle:lambdas/assets-deployment/assets-deployment.lambda": "pnpm dlx projen bundle:lambdas/assets-deployment/assets-deployment.lambda",
"bundle:lambdas/assets-deployment/assets-deployment.lambda:watch": "pnpm dlx projen bundle:lambdas/assets-deployment/assets-deployment.lambda:watch",
"bundle:lambdas/assets-deployment/patch-fetch": "pnpm dlx projen bundle:lambdas/assets-deployment/patch-fetch",
"bundle:lambdas/assets-deployment/patch-fetch:watch": "pnpm dlx projen bundle:lambdas/assets-deployment/patch-fetch:watch",
"bundle:lambdas/revalidate/revalidate.lambda": "pnpm dlx projen bundle:lambdas/revalidate/revalidate.lambda",
"bundle:lambdas/revalidate/revalidate.lambda:watch": "pnpm dlx projen bundle:lambdas/revalidate/revalidate.lambda:watch",
"bundle:nextjs-build/add-cache-handler": "pnpm dlx projen bundle:nextjs-build/add-cache-handler",
"bundle:nextjs-build/add-cache-handler:watch": "pnpm dlx projen bundle:nextjs-build/add-cache-handler:watch",
"bundle:nextjs-build/cache-handler": "pnpm dlx projen bundle:nextjs-build/cache-handler",
"bundle:nextjs-build/cache-handler:watch": "pnpm dlx projen bundle:nextjs-build/cache-handler:watch",
"bundle:nextjs-build/symlink": "pnpm dlx projen bundle:nextjs-build/symlink",
"bundle:nextjs-build/symlink:watch": "pnpm dlx projen bundle:nextjs-build/symlink:watch",
"clobber": "pnpm dlx projen clobber",
"compat": "pnpm dlx projen compat",
"compile": "pnpm dlx projen compile",
"default": "pnpm dlx projen default",
"docgen": "pnpm dlx projen docgen",
"eject": "pnpm dlx projen eject",
"eslint": "pnpm dlx projen eslint",
"package": "pnpm dlx projen package",
"package-all": "pnpm dlx projen package-all",
"package:js": "pnpm dlx projen package:js",
"post-compile": "pnpm dlx projen post-compile",
"post-upgrade": "pnpm dlx projen post-upgrade",
"pre-compile": "pnpm dlx projen pre-compile",
"release": "pnpm dlx projen release",
"test": "pnpm dlx projen test",
"test:watch": "pnpm dlx projen test:watch",
"unbump": "pnpm dlx projen unbump",
"upgrade": "pnpm dlx projen upgrade",
"watch": "pnpm dlx projen watch",
"projen": "pnpm dlx projen"
},
"author": {
"name": "Ben Stickley",
"email": "[email protected]",
"organization": false
},
"devDependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-s3": "^3.741.0",
"@aws-sdk/client-sqs": "^3.741.0",
"@aws-sdk/lib-storage": "^3.741.0",
"@mrgrain/jsii-struct-builder": "^0.7.43",
"@smithy/signature-v4": "^2.3.0",
"@types/aws-lambda": "^8.10.147",
"@types/jest": "^29.5.14",
"@types/mime-types": "^2.1.4",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"aws-cdk-lib": "2.177.0",
"cdk-nag": "^2.35.9",
"commit-and-tag-version": "^12",
"constructs": "10.0.5",
"esbuild": "^0.24.2",
"eslint": "^9",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"jest-junit": "^15",
"jsii": "~5.5.0",
"jsii-diff": "^1.106.0",
"jsii-docgen": "^10.5.0",
"jsii-pacmak": "^1.106.0",
"jsii-rosetta": "~5.5.0",
"mime-types": "^2.1.35",
"next": "14.2.23",
"prettier": "^3.4.2",
"projen": "^0.90.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"undici": "^6.21.1"
},
"peerDependencies": {
"aws-cdk-lib": "^2.177.0",
"constructs": "^10.0.5"
},
"pnpm": {},
"keywords": [
"aws",
"aws-cdk",
"cdk",
"next",
"next.js",
"nextjs"
],
"main": "lib/index.js",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"version": "0.0.0",
"jest": {
"coverageProvider": "v8",
"testMatch": [
"<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)",
"<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)",
"<rootDir>/@(projenrc)/**/*(*.)@(spec|test).ts?(x)",
"<rootDir>/@(projenrc)/**/__tests__/**/*.ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"transform": {
"^.+\\.[t]sx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.dev.json"
}
]
}
},
"types": "lib/index.d.ts",
"stability": "stable",
"jsii": {
"outdir": "dist",
"targets": {},
"tsc": {
"outDir": "lib",
"rootDir": "src"
}
},
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"pnpm dlx projen\"."
}