-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 870 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 870 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
{
"name": "lunar-tour-api",
"version": "1.1.0",
"description": "A GraphQL Node.js starter for the Serverless Framework with async/await and unit test support",
"main": "handler.js",
"scripts": {
"offline": "sls offline",
"deploy": "sls deploy",
"test": "serverless-bundle test"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pimp-my-book/serverless-graphql-nodejs-starter"
},
"jest": {
"setupFilesAfterEnv": [
"./jest-preload-env.js"
]
},
"devDependencies": {
"serverless-bundle": "^1.2.5",
"serverless-dotenv-plugin": "^2.1.1",
"serverless-offline": "^5.3.3"
},
"dependencies": {
"apollo-server-lambda": "^2.14.3",
"aws-sdk": "2.694.0",
"dotenv": "^8.2.0",
"graphql": "^14.3.0",
"stripe": "^8.63.0",
"uuid": "^8.1.0"
}
}