-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "serverless-appsync-plugin",
"version": "1.13.0",
"description": "AWS AppSync support for the Serverless Framework",
"main": "src/index.js",
"repository": "https://github.com/sid88in/serverless-appsync-plugin",
"license": "MIT",
"files": [
"/src"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ."
},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^22.1.4",
"prettier": "^2.4.1",
"serverless": "^1.83.3"
},
"dependencies": {
"@graphql-tools/merge": "^6.2.11",
"aws-sdk": "^2.881.0",
"chalk": "^2.4.2",
"globby": "^11.0.3",
"graphql": "^14.7.0",
"graphql-playground-middleware-koa": "^1.6.21",
"koa": "^2.13.1",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"ramda": "^0.25.0"
},
"peerDependencies": {},
"jest": {
"testEnvironment": "node"
}
}