forked from claudiajs/example-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 718 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 718 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
{
"name": "graphql-example",
"version": "2.0.0",
"description": "An example on using a GraphQL endpoint to store and get data to/from DynamoDB",
"scripts": {
"create": "claudia create --name claudia-graphql-example --region us-east-1 --api-module src/index --policies policies",
"deploy": "claudia update"
},
"keywords": [
"claudia",
"aws-lambda",
"DynamoDB",
"GraphQL"
],
"author": "Fancis Au-Yeung @aidanbon",
"repository": {
"type": "git",
"url": "git+https://github.com/claudiajs/example-projects.git"
},
"dependencies": {
"aws-sdk": "^2.7.27",
"claudia-api-builder": "^4",
"graphql": "0.4.18"
},
"devDependencies": {
"claudia": "^4"
}
}