-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 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
{
"name": "@jetkit/layer-prisma-pg",
"description": "AWS Lambda Layer for Node.js with prisma and pg",
"version": "1.0.0",
"keywords": [
"aws",
"lambda",
"layer",
"node",
"nodejs",
"psql",
"postgres",
"postgresql",
"lambda layer"
],
"author": "Mischa <mischa@jetbridge.com>",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"license": "MIT",
"files": [
"dist/*"
],
"repository": {
"type": "git",
"url": "https://github.com/jetbridge/lambda-layer-prisma-pg"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "tsc && npm run zip",
"start": "tsc -w",
"prezip": "bash build.sh",
"zip": "rm -f dist/nodejs.zip; zip dist/nodejs.zip nodejs -r",
"prepack": "npm run zip"
},
"dependencies": {
"@aws-cdk/aws-lambda": "1.111.0",
"@aws-cdk/core": "1.111.0"
},
"devDependencies": {
"@types/node": "latest",
"aws-cdk": "1.111.0",
"jest-diff": "^27.0.6",
"ts-node": "latest",
"typescript": "latest"
}
}