forked from sisense/graphql2rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.42 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
{
"name": "graphql2rest",
"version": "1.0.1",
"author": "Roy Mor <roy.mor.email@gmail.com>",
"contributors": [
"Ray Luxembourg",
"Yotam Roth",
"Sergei Magera"
],
"license": "MIT",
"description": "GraphQL to REST converter: automatically generate a RESTful API from your existing GraphQL API",
"keywords": [
"graphql",
"rest",
"api",
"graphql2rest",
"restful",
"graphql-to-rest"
],
"repository": {
"type": "git",
"url": "https://github.com/sisense/graphql2rest.git"
},
"main": "./src/index.js",
"private": false,
"scripts": {
"lint": "eslint . --ext .js",
"test": "./node_modules/mocha/bin/_mocha --recursive './test/**/*.test.js'",
"test:coverage": "nyc npm run test"
},
"dependencies": {
"del": "^5.1.0",
"dot-object": "^2.1.2",
"express": "~4.18.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"http-status-codes": "^1.3.0",
"jmespath": "^0.15.0",
"lodash-pickdeep": "^1.0.2",
"lodash.clonedeep": "^4.5.0",
"lodash.omit": "^4.5.0",
"mingo": "^2.2.10",
"object-path": "^0.11.4",
"url-join": "^4.0.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-logical-assignment-operators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-numeric-separator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-proposal-pipeline-operator": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/polyfill": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"chai": "^3.5.0",
"chai-fs": "^2.0.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"mocha": "10.2.0",
"nyc": "^15.1.0",
"run-middleware": "^0.9.10"
}
}