This repository has been archived by the owner on Jul 6, 2022. It is now read-only.
forked from sisense/graphql2rest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.62 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
{
"name": "graphql2rest",
"version": "0.6.5",
"author": "Roy Mor <[email protected]>",
"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.16.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"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": "6.8.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-nibble": "^5.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-simple-import-sort": "^3.0.0",
"eslint-plugin-unicorn": "^7.1.0",
"mocha": "7.1.0",
"nyc": "^15.0.0",
"run-middleware": "^0.9.10",
"webpack": "^4.41.5"
}
}