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
71 lines (71 loc) · 1.95 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@sls-next/lambda",
"version": "3.8.0-alpha.0",
"description": "Code to build and deploy for Lambda + API Gateway",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/module/index.js",
"directories": {
"dist": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serverless-nextjs/serverless-next.js.git",
"directory": "packages/libs/lambda"
},
"scripts": {
"prepack": "yarn clean && yarn build",
"build": "tsc -p tsconfig.build.json && yarn rollup",
"esbuild": "node esbuild.js",
"rollup": "rollup --config",
"clean": "yarn rimraf dist",
"test": "jest"
},
"keywords": [
"AWS",
"Lambda",
"API Gateway",
"Next.js",
"Serverless",
"cdktf"
],
"author": "Daniel Phang <serverlessnextjs@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/serverless-nextjs/serverless-next.js/issues"
},
"homepage": "https://github.com/serverless-nextjs/serverless-next.js#readme",
"dependencies": {
"@cdktf/provider-archive": "0.3.31",
"@cdktf/provider-aws": "5.0.52",
"@cdktf/provider-null": "0.5.30",
"@sls-next/aws-common": "link:../aws-common",
"@sls-next/core": "link:../core",
"cdktf": "0.9.2",
"cdktf-cli": "0.9.2",
"constructs": "10.0.88",
"esbuild": "0.14.23",
"fs-extra": "9.1.0",
"yargs": "17.3.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@rollup/plugin-commonjs": "18.1.0",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-node-resolve": "10.0.0",
"@types/aws-lambda": "8.10.92",
"@types/fs-extra": "9.0.13",
"@types/jest": "^27.4.0",
"@types/node": "17.0.19",
"@types/yargs": "17.0.8",
"jest": "^27.4.7",
"rimraf": "3.0.2",
"rollup": "2.66.1",
"rollup-plugin-node-externals": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.31.2",
"typescript": "4.5.5"
}
}