{ "name": "human-connection-backend", "version": "0.0.1", "description": "GraphQL Backend for Human Connection", "main": "src/index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 0", "start": "./node_modules/.bin/nodemon --exec babel-node src/index.js", "start:debug": "./node_modules/.bin/nodemon --exec babel-node --inspect=0.0.0.0:9229 src/index.js", "db:seed": "concurrently --kill-others --success first 'cross-env GRAPHQL_URI=http://localhost:4001 PERMISSIONS=disabled GRAPHQL_PORT=4001 yarn run start' 'wait-on tcp:4001 && cross-env GRAPHQL_URI=http://localhost:4001 ./node_modules/.bin/babel-node src/seed/seed-db.js'", "db:reset": "concurrently --kill-others --success first 'cross-env GRAPHQL_URI=http://localhost:4001 PERMISSIONS=disabled GRAPHQL_PORT=4001 yarn run start' 'wait-on tcp:4001 && cross-env GRAPHQL_URI=http://localhost:4001 ./node_modules/.bin/babel-node src/seed/unseed-db.js'" }, "author": "Human Connection gGmbH", "license": "MIT", "dependencies": { "@babel/cli": "^7.1.5", "@babel/core": "^7.1.6", "@babel/node": "^7.0.0", "@babel/preset-env": "^7.1.6", "@babel/register": "^7.0.0", "apollo-cache-inmemory": "^1.2.5", "apollo-client": "^2.3.2", "apollo-link-http": "^1.5.4", "apollo-server": "^2.0.4", "bcryptjs": "^2.4.3", "cheerio": "^1.0.0-rc.2", "date-fns": "^2.0.0-alpha.24", "dotenv": "^6.0.0", "graphql-custom-directives": "^0.2.13", "graphql-iso-date": "^3.6.1", "graphql-middleware": "1.7.6", "graphql-shield": "^4.0.1", "graphql-tag": "^2.9.2", "graphql-yoga": "1.16.2", "jsonwebtoken": "^8.3.0", "linkifyjs": "^2.1.7", "lodash": "^4.17.11", "ms": "^2.1.1", "neo4j-driver": "^1.6.1", "neo4j-graphql-js": "1.0.5", "node-fetch": "^2.1.2", "passport": "^0.4.0", "passport-jwt": "^4.0.0", "sanitize-html": "^1.19.1", "slug": "^0.9.1", "trunc-html": "^1.1.2" }, "devDependencies": { "concurrently": "^4.1.0", "cross-env": "^5.2.0", "faker": "^4.1.0", "nodemon": "^1.18.7", "wait-on": "^3.2.0" } }