forked from nikhilaravi/serverless-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "serverless-graphql",
"version": "1.0.0",
"description": "A serverless app built using AWS lambda, API gateway, React and graphql",
"main": "index.js",
"scripts": {
"create-iam": "source ./scripts/create-iam.sh",
"create-s3": ". ./scripts/create-s3-bucket.sh",
"deploy": "node ./node_modules/dpl/dpl.js",
"create-api": ". ./scripts/create-api.sh",
"deploy-app": "npm run deploy && npm run create-api",
"test": "node ./node_modules/.bin/mocha ./test/**/*.js",
"coverage": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha ./test/**/*.js --report lcov -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nikhilaravi/serverless-graphql.git"
},
"keywords": [
"AWS",
"Lambda",
"React",
"GraphQL",
"API",
"Gateway",
"Serverless"
],
"author": "Nikhila Ravi",
"license": "ISC",
"bugs": {
"url": "https://github.com/nikhilaravi/serverless-graphql/issues"
},
"homepage": "https://github.com/nikhilaravi/serverless-graphql#readme",
"devDependencies": {
"aws-sdk": "^2.3.7",
"aws-sdk-mock": "^1.0.10",
"dpl": "^3.0.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"simple-mock": "^0.6.0",
"sinon": "^1.17.4"
},
"files_to_deploy": [
"package.json",
"index.js",
"lib/",
".env"
],
"dependencies": {
"env2": "^2.0.7",
"graphql": "^0.5.0",
"lodash.isempty": "^4.2.1"
}
}