forked from aheissenberger/serverless-appsync-offline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.29 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "serverless-offline-appsync",
"version": "1.0.0",
"description": "Serverless AWS AppSync Offline Plugin - Allow to run AppSync locally for serverless framework",
"main": "index.js",
"engines": {
"node": ">=8"
},
"repository": "[email protected]:cyberwombat/serverless-offline-appsync.git",
"contributors": [
"Yashua Savage <[email protected]",
"Andreas Heissenberger <[email protected]>"
],
"license": "MIT",
"keywords": [
"serverless framework plugin",
"serverless applications",
"serverless plugins",
"api gateway",
"lambda",
"dynamodb",
"dynamodb local",
"aws",
"aws lambda",
"aws dynamodb",
"amazon",
"amazon web services",
"serverless.com"
],
"scripts": {
"test": "jest --no-cache"
},
"dependencies": {
"aedes": "^0.42.6",
"apollo-boost": "^0.4.9",
"argparse": "^2.0.1",
"aws-appsync": "^4.0.1",
"aws-sdk": "^2.756.0",
"consola": "^2.15.0",
"cors": "^2.8.5",
"dataloader": "^2.0.0",
"date-fns": "^2.16.1",
"dateformat": "^3.0.3",
"event-to-promise": "^0.8.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"graphql": "15.3.0",
"graphql-iso-date": "^3.6.1",
"graphql-scalars": "^1.2.7",
"graphql-subscriptions": "^1.1.0",
"graphql-tag": "^2.11.0",
"graphql-tools": "^6.2.2",
"graphql-type-json": "^0.3.2",
"js-string-escape": "^1.0.1",
"json5": "^2.1.3",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.0.0-beta.2",
"lib": "^4.3.0",
"libphonenumber-js": "^1.7.58",
"lodash": "^4.17.20",
"lodash.isequal": "^4.5.0",
"mqemitter": "^4.4.0",
"nock": "^13.0.4",
"node-fetch": "^2.6.1",
"paho-mqtt": "^1.1.0",
"pkg-up": "^3.1.0",
"serverless": "^2.1.1",
"uuid": "^8.3.0",
"velocityjs": "2.0.1",
"websocket-stream": "^5.5.2"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.9.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
},
"DISABLEhusky": {
"hooks": {
"pre-push": "yarn jest --ci --silent"
}
}
}