-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.53 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": "dynamic-graphql-from-neo4j",
"version": "0.0.1",
"description": "A GraphQL to Cypher query execution layer for Neo4j. ",
"main": "./example/graphql-tools/server.js",
"scripts": {
"start": "nodemon ./example/graphql-tools/server.js --exec babel-node -e js",
"build": "babel src --presets babel-preset-env --out-dir dist",
"prepublish": "npm run build",
"test": "ava test/*.js"
},
"author": "Jay Shah",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vistaran/dynamic-graphql-from-neo4j.git"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"nodemon": "^1.12.1"
},
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.1",
"express-graphql": "^0.6.11",
"graphql": "^0.11.7",
"graphql-server-core": "^1.1.0",
"graphql-server-express": "^1.1.2",
"graphql-tools": "^2.0.0",
"lodash": "^4.17.4",
"neo4j-driver": "^1.4.1"
},
"bugs": {
"url": "https://github.com/vistaran/dynamic-graphql-from-neo4j/issues"
},
"homepage": "https://github.com/vistaran/dynamic-graphql-from-neo4j",
"directories": {
"example": "example",
"test": "test"
},
"keywords": ["reverse-engieering", "graphql", "neo4j","parser","typescript"]
}