-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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": "@iwatakeshi/aws-lambda-appsync",
"version": "0.0.7",
"description": "Utilities to simplify GraphQL operations in a lambda function for Appsync",
"main": "lib/index.js",
"repository": "git@github.com:iwatakeshi/aws-lambda-appsync.git",
"author": "Takeshi Iwana <iwatakeshi@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/node": "^14.0.27",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"jest": "^26.2.2",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"scripts": {
"prepare": "yarn build",
"preversion": "yarn run lint",
"prepublishOnly": "yarn test",
"build": "tsc",
"test": "jest --passWithNoTests",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"dependencies": {
"@redux-offline/redux-offline": "^2.6.0",
"aws-appsync": "^4.0.0",
"aws-sdk": "^2.725.0",
"graphql-tag": "^2.11.0",
"isomorphic-fetch": "^2.2.1",
"ws": "^7.3.1"
},
"files": [
"lib/**/*"
],
"types": "lib/index.d.ts"
}