forked from sid88in/serverless-appsync-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 844 Bytes
/
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
{
"name": "serverless-appsync-plugin",
"version": "1.1.2",
"description": "AWS AppSync support for the Serverless Framework",
"main": "index.js",
"repository": "https://github.com/sid88in/serverless-appsync-plugin",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint . --fix"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^22.1.4",
"serverless": "^1.30.0"
},
"dependencies": {
"aws-sdk": "^2.404.0",
"chalk": "^2.4.2",
"graphql": "^0.13.2",
"graphql-playground-middleware-koa": "^1.6.4",
"koa": "^2.5.2",
"merge-graphql-schemas": "^1.5.8",
"ramda": "^0.25.0"
},
"peerDependencies": {},
"jest": {
"testEnvironment": "node"
}
}