forked from nasa/cmr-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.33 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": "edsc-graphql",
"root": true,
"version": "1.0.0",
"description": "Serverless Framework Implementation of GraphQL",
"graphdoc": {
"endpoint": "http://localhost:3003/graphql",
"output": "./doc/schema"
},
"maintainers": [
{
"name": "Ryan Abbott",
"email": "[email protected]"
},
{
"name": "Matthew Crouch",
"email": "[email protected]"
},
{
"name": "Trevor Lang",
"email": "[email protected]"
},
{
"name": "Mark Schmele",
"email": "[email protected]"
}
],
"scripts": {
"start": "serverless offline start",
"test": "jest",
"test:watch": "jest --watchAll",
"silent-test": "jest --silent",
"test:bamboo": "jest --ci --reporters=default --reporters=jest-junit",
"lint": "eslint src"
},
"devDependencies": {
"jest": "^27.5.1",
"jest-junit": "^13.2.0",
"jest-mock-axios": "^4.6.1",
"jest-transform-graphql": "^2.1.0",
"jsdoc": "^3.6.10",
"nock": "^12.0.3",
"snyk": "^1.914.0"
},
"dependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@graphql-tools/merge": "^8.2.10",
"@graphql-tools/schema": "^8.3.10",
"apollo-server-core": "^3.10.3",
"apollo-server-lambda": "^3.10.3",
"array-foreach-async": "^1.0.1",
"aws-sdk": "^2.1124.0",
"axios": "^0.21.4",
"babel-loader": "^8.2.5",
"camelcase-keys": "^6.2.2",
"clean-webpack-plugin": "^4.0.0",
"dasherize": "^2.0.0",
"dataloader": "^2.1.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-webpack-plugin": "^3.1.1",
"graphql": "^16.4.0",
"graphql-parse-resolve-info": "^4.12.0",
"graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2",
"jsonwebtoken": "^9.0.0",
"jwks-rsa": "^2.1.4",
"lodash": "^4.17.21",
"pascalcase-keys": "^1.0.1",
"qs": "^6.10.3",
"serverless": "^3.23.0",
"serverless-offline": "^11.1.3",
"serverless-plugin-log-subscription": "^2.1.5",
"serverless-webpack": "^5.10.0",
"snakecase-keys": "^3.2.1",
"uuid": "^8.3.2",
"webpack": "^5.72.0",
"webpack-node-externals": "^3.0.0",
"ws": "^8.5.0"
},
"overrides": {
"graphql-parse-resolve-info": {
"graphql": "^16"
}
}
}