cdk-nextjs
Version:
Deploy Next.js apps on AWS with CDK
159 lines • 5.09 kB
JSON
{
"name": "cdk-nextjs",
"description": "Deploy Next.js apps on AWS with CDK",
"repository": {
"type": "git",
"url": "https://github.com/cdklabs/cdk-nextjs.git"
},
"author": {
"name": "Ben Stickley",
"email": "bestickley@gmail.com",
"organization": false
},
"devDependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-cloudfront": "^3.864.0",
"@aws-sdk/client-s3": "^3.864.0",
"@aws-sdk/lib-storage": "^3.864.0",
"@mrgrain/jsii-struct-builder": "^0.7.63",
"@smithy/signature-v4": "^2.3.0",
"@types/aws-lambda": "^8.10.152",
"@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.196.0",
"cdk-nag": "^2.37.0",
"commit-and-tag-version": "^12",
"constructs": "10.0.5",
"esbuild": "^0.25.8",
"eslint": "^9",
"eslint-config-prettier": "^9.1.2",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
"jest-junit": "^15",
"jsii": "~5.8.7",
"jsii-diff": "^1.113.0",
"jsii-docgen": "^10.5.0",
"jsii-pacmak": "^1.113.0",
"jsii-rosetta": "~5.8.7",
"mime-types": "^2.1.35",
"next": "14",
"prettier": "^3.6.2",
"projen": "^0.90.6",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"undici": "^6.21.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.196.0",
"constructs": "^10.0.5"
},
"keywords": [
"aws",
"aws-cdk",
"cdk",
"next",
"next.js",
"nextjs"
],
"main": "lib/index.js",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"version": "0.4.10",
"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\".",
"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/post-deploy/post-deploy.lambda": "pnpm dlx projen bundle:lambdas/post-deploy/post-deploy.lambda",
"bundle:lambdas/post-deploy/post-deploy.lambda:watch": "pnpm dlx projen bundle:lambdas/post-deploy/post-deploy.lambda:watch",
"bundle:nextjs-build/cdk-nextjs-cache-handler": "pnpm dlx projen bundle:nextjs-build/cdk-nextjs-cache-handler",
"bundle:nextjs-build/cdk-nextjs-cache-handler:watch": "pnpm dlx projen bundle:nextjs-build/cdk-nextjs-cache-handler: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"
}
}