This repository was archived by the owner on Jan 28, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 453
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.39 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.39 KB
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
{
"name": "@sls-next/cdk-construct",
"publishConfig": {
"access": "public"
},
"description": "Serverless Next.js powered by AWS CDK",
"version": "3.8.0-alpha.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Henry Kirkness <henry@planes.studio>",
"keywords": [
"serverless",
"cdk",
"nextjs"
],
"scripts": {
"prepack": "yarn clean && yarn build",
"build": "tsc -p tsconfig.json",
"clean": "yarn rimraf dist",
"test": "jest"
},
"bugs": {
"url": "https://github.com/serverless-nextjs/serverless-next.js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-nextjs/serverless-next.js.git",
"directory": "packages/serverless-components/nextjs-cdk-construct"
},
"license": "MIT",
"dependencies": {
"@aws-cdk/aws-ec2": "^1.156.0",
"@aws-cdk/aws-elasticloadbalancingv2": "^1.156.0",
"@sls-next/core": "link:../../libs/core",
"@sls-next/lambda-at-edge": "link:../../libs/lambda-at-edge",
"fast-glob": "3.2.11",
"fs-extra": "9.1.0"
},
"peerDependencies": {
"aws-cdk-lib": "^2.3.0",
"constructs": "^10.0.88"
},
"devDependencies": {
"@aws-cdk/assert": "^2.13.0",
"@types/fs-extra": "9.0.13",
"aws-cdk": "^2.13.0",
"aws-cdk-lib": "^2.3.0",
"constructs": "^10.0.88",
"jest": "27.4.7",
"rimraf": "3.0.2",
"typescript": "4.5.5"
}
}