-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.06 KB
/
package.json
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": "aws-lambda-apollo-api",
"version": "1.0.0",
"description": "AWS Lambda Apollo API",
"author": "Miroslaw Majka",
"license": "MIT",
"main": "src/graphql-lambda.ts",
"scripts": {
"setup": "node create-local-lambda-event-data.ts",
"invoke": "sls invoke local -f lambdaGraphqlFunction -p .lambda-event-data.json",
"invoke-watch": "sls invoke local -f lambdaGraphqlFunction -p .lambda-event-data.json --watch",
"start": "npm run setup && npm run invoke",
"deploy": "sls deploy",
"remove": "sls remove"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miroslawmajka/lambda-graphql.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/miroslawmajka/lambda-graphql/issues"
},
"homepage": "https://github.com/miroslawmajka/lambda-graphql#readme",
"dependencies": {
"apollo-server-lambda": "^2.18.2",
"graphql": "^15.3.0"
},
"devDependencies": {
"prettier": "^2.1.2",
"serverless": "^2.7.0",
"serverless-plugin-typescript": "^1.1.9",
"typescript": "^4.0.3"
}
}