forked from yarax/swagger-to-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.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
{
"name": "swagger-to-graphql",
"version": "1.2.1",
"author": "Roman Krivtsov",
"bin": "./bin/swagger2graphql",
"dependencies": {
"babel-runtime": "^6.25.0",
"graphql": "^0.10.1",
"isomorphic-fetch": "^2.2.1",
"js-yaml": "^3.8.4",
"json-schema-ref-parser": "^3.1.2",
"lodash": "^4.16.4",
"node-request-by-swagger": "^1.0.6",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb-es5": "^1.1.0",
"eslint-plugin-react": "^6.5.0",
"express": "^4.15.3",
"express-graphql": "^0.6.6",
"flow-bin": "^0.47.0",
"mocha": "^3.1.2"
},
"keywords": [
"graphql",
"swagger"
],
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"lint": "eslint src/",
"prepublish": "npm run build",
"start": "node example/app.js",
"test": "mocha"
}
}