-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 935 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 935 Bytes
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
{
"name": "@nuel/fastify-next-lambda",
"version": "1.3.0",
"description": "Runs Next.js in Fastify, in Lambda",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"prebuild": "rm -rf lib/",
"build": "uniformly build",
"prepare": "npm run build",
"build-layer": "bash ./deploy/scripts/build-layer.sh",
"prepublish-layer": "npm run build-layer",
"publish-layer": "torbjorn deploy -e prod",
"test": "uniformly test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-nuel/fastify-next-lambda.git"
},
"author": "Tom Davies <tom@thenuel.com>",
"license": "UNLICENSED",
"devDependencies": {
"@nuel/uniformly": "^2.1.0",
"@types/node": "^12.7.2",
"@types/send": "^0.14.4"
},
"dependencies": {
"aws-lambda-fastify": "^1.0.3",
"fastify": "^2.7.1",
"fastify-helmet": "^3.0.1",
"send": "^0.17.1",
"uuid": "^3.3.2"
}
}