-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 896 Bytes
/
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
{
"name": "community-graphql-api",
"version": "0.0.2",
"description": "GraphQL API for Neo4j community graph",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start-dev": "./node_modules/.bin/nodemon --exec babel-node src/index.js",
"start": "babel src -d build; cp .env build; node build/index.js"
},
"author": "William Lyon",
"license": "MIT",
"dependencies": {
"apollo-boost": "^0.1.10",
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.2",
"apollo-link-http": "^1.5.4",
"apollo-server": "^2.0.4",
"dotenv": "^5.0.1",
"graphql-tag": "^2.9.2",
"moment": "^2.22.2",
"neo4j-driver": "^1.7.2",
"neo4j-graphql-js": "^0.1.32",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"nodemon": "^1.17.5"
}
}