-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "apollo-datasource-graphql",
"version": "1.3.2",
"license": "MIT",
"description": "Create Apollo DataSource to connect to a GraphQL API",
"main": "dist/index.js",
"author": "Kristy Miller",
"contributors": [
"Kristy Miller <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/poetic/apollo-datasource-graphql"
},
"scripts": {
"build": "rm -rf dist/ && tsc",
"lint": "tslint -p tsconfig.json -c tslint.json",
"prepublishOnly": "yarn build",
"start": "ts-node src/index.ts"
},
"keywords": [
"apollo",
"apollo",
"datasource",
"graphql"
],
"dependencies": {
"apollo-cache-inmemory": "^1.2.5",
"apollo-datasource": "^0.1.3",
"apollo-link": "^1.2.2",
"apollo-link-context": "^1.0.8",
"apollo-link-error": "^1.1.0",
"apollo-link-http": "^1.5.4",
"apollo-server-errors": "^2.0.0-rc.1",
"await-to-js": "^2.0.1",
"graphql": "^0.13.2",
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.34",
"@types/lodash": "^4.14.112",
"@types/node": "^10.5.2",
"ts-node": "^7.0.0",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.4.4"
}
}