forked from ManjunathaN/jsonschema-to-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.05 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
{
"name": "jsonschema-to-graphql",
"version": "0.0.4",
"description": "Generate GraphQL schema from JSON schemas.",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "babel src/main --out-dir dist",
"lint": "eslint src example",
"test": "mocha --slow 10 --timeout 5000 --reporter spec --recursive --require babel-register src/test",
"test:watch": "npm run test -- --watch",
"start": "nodemon -r babel-core/register src/main/index.js",
"testserver": "nodemon -r babel-core/register myserver.js",
"example": "node example/server",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"graphql",
"knex",
"schema",
"reflection",
"json",
"query",
"mutation",
"generate"
],
"author": "Manjunatha N <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/ManjunathaN/jsonschema-to-graphql#readme",
"repository": {
"type": "git",
"url": "[email protected]:ManjunathaN/jsonschema-to-graphql.git"
},
"bugs": {
"url": "https://github.com/ManjunathaN/jsonschema-to-graphql/issues"
},
"dependencies": {
"bluebird": "^3.4.6",
"dataloader": "^1.2.0",
"express": "^4.14.0",
"express-graphql": "^0.5.4",
"graphql": "^0.7.2",
"jsontableschema": "^0.2.2",
"knex": "^0.12.6",
"lodash": "^4.16.4",
"pg": "^6.1.0",
"pluralize": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-regenerator": "^6.16.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"js-beautify": "^1.6.4",
"mocha": "^3.1.2",
"sqlite3": "^3.1.8"
}
}