forked from graphile/crystal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.03 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.03 KB
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
{
"name": "postgraphql",
"version": "1.7.0",
"description": "A GraphQL schema created by reflection over a PostgreSQL schema 🐘",
"author": "Caleb Meredith <calebmeredith8@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/calebmer/postgraphql#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/calebmer/postgraphql.git"
},
"bugs": {
"url": "https://github.com/calebmer/postgraphql/issues"
},
"keywords": [
"graphql",
"postgres",
"schema",
"reflection",
"server",
"relay",
"connection"
],
"main": "index.js",
"files": [
"README.md",
"LICENSE",
"dist",
"index.js",
"assets"
],
"bin": {
"postgraphql": "dist/main.js"
},
"scripts": {
"lint": "scripts/lint.sh",
"clean": "scripts/clean.sh",
"build": "scripts/build.sh",
"test": "scripts/test.sh",
"test-watch": "scripts/test-watch.sh",
"schema-up": "npm --prefix examples/forum run schema-up",
"schema-down": "npm --prefix examples/forum run schema-down",
"start": "scripts/start.sh",
"preversion": "scripts/test.sh",
"prepublish": "scripts/clean.sh && scripts/build.sh"
},
"dependencies": {
"bluebird": "^3.4.0",
"commander": "^2.9.0",
"dataloader": "^1.2.0",
"debug": "^2.2.0",
"express": "^4.13.4",
"express-graphql": "^0.5.3",
"graphql": "^0.6.0",
"http-errors": "^1.5.0",
"jsonwebtoken": "^7.0.1",
"lodash": "^4.13.1",
"morgan": "^1.7.0",
"on-finished": "^2.3.0",
"pg": "^5.1.0",
"pg-connection-string": "^0.1.3",
"serve-favicon": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-plugin-module-alias": "^1.4.0",
"babel-preset-modern-node": "^2.1.1",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.9.0",
"babel-watch": "^2.0.2",
"eslint": "^2.12.0",
"eslint-config-calebmer": "^6.0.1",
"expect": "^1.20.1",
"mocha": "^2.5.3",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.1.0"
}
}