forked from claudiajs/example-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
36
37
38
{
"name": "graphql-example",
"version": "1.0.0",
"description": "An example on using a GraphQL endpoint to store and get data to/from DynamoDB",
"main": "index.js",
"files": [
"./*.js"
],
"scripts": {
"create": "npm run transpile && claudia create --name claudia-graphql-example --region us-east-1 --api-module index --policies policies",
"deploy": "npm run transpile && claudia update",
"transpile": "babel --presets es2015 --plugins add-module-exports src --out-dir ."
},
"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.2.39",
"bluebird": "^3.3.3",
"claudia-api-builder": "^1.0.2",
"graphql": "0.4.18"
},
"devDependencies": {
"babel-cli": "6.6.5",
"babel-core": "6.6.5",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.6.0",
"claudia": "1.0.15"
}
}