loopback-graphql
Version:
Add Apollo Server or GraphQL queries on your Loopback server
107 lines (106 loc) • 2.97 kB
JSON
{
"name": "loopback-graphql",
"version": "0.13.0",
"description": "Add Apollo Server or GraphQL queries on your Loopback server",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"types": "lib/index",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"pretest": "npm run build && npm run copydata",
"test": "jest",
"copydata": "cpx ./__test__/data.json ./data",
"test:watch": "npm test -- --watch",
"test:notify": "npm run test:watch -- --notify",
"coverage": "npm test -- --coverage",
"coverage:notify": "npm run coverage -- --watch --notify",
"start": "npm run build && node server/server.js",
"start:watch": "concurrently \"npm run build:watch\" \"node-dev server/server.js\"",
"prerelease": "npm test",
"release": "standard-version"
},
"repository": {
"url": "git+https://github.com/tallyb/loopback-graphql.git",
"type": "git"
},
"keywords": [
"Loopback",
"GraphQL",
"Apollo",
"Express",
"Javascript",
"REST",
"APIs"
],
"author": "Tally Barak <tally.barak@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tallyb/loopback-graphql/issues"
},
"homepage": "https://github.com/tallyb/loopback-graphql#readme",
"dependencies": {
"body-parser": "^1.17.1",
"graphql": "^0.9.6",
"graphql-date": "^1.0.3",
"graphql-geojson": "^1.0.0",
"graphql-server-express": "^0.7.2",
"graphql-tools": "^0.11.0",
"graphql-type-json": "^0.1.4",
"lodash": "^4.17.4"
},
"devDependencies": {
"@types/graphql": "^0.9.1",
"@types/jest": "^19.2.3",
"@types/lodash": "^4.14.64",
"@types/node": "^7.0.18",
"@types/request": "0.0.43",
"@types/request-promise": "^4.1.33",
"@types/uuid": "^2.0.29",
"awesome-typescript-loader": "^3.1.3",
"compression": "^1.6.2",
"concurrently": "^3.4.0",
"cors": "^2.8.3",
"cpx": "^1.5.0",
"express": "^4.15.2",
"ghooks": "^2.0.0",
"graphql-tag": "^2.1.0",
"helmet": "^3.6.0",
"jest": "^20.0.1",
"jest-cli": "^20.0.1",
"loopback": "^3.8.0",
"loopback-boot": "^2.24.0",
"loopback-component-explorer": "^4.2.0",
"loopback-datasource-juggler": "^3.6.1",
"node-dev": "^3.1.3",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"rimraf": "^2.6.1",
"standard-version": "^4.0.0",
"supertest": "^3.0.0",
"ts-jest": "^20.0.3",
"tslint": "^5.2.0",
"tslint-loader": "^3.5.3",
"typescript": "2.3.2",
"webpack": "^2.5.1",
"webpack-node-externals": "^1.6.0",
"nsp": "^2.6.3",
"serve-favicon": "^2.4.2",
"strong-error-handler": "^2.1.0"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"mapCoverage": true,
"testEnvironment": "node",
"testRegex": ".*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}