-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "supergraph",
"description": "GraphQL Server Framework",
"version": "0.1.0",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc",
"lint": "tslint ./src/**/*.ts",
"prettier": "prettier --single-quote --semi false --print-width 90 --write ./src/**/*.ts",
"pretest": "npm run build",
"test": "nyc mocha ./dist/**/*.spec.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"author": "Kim Brandwijk <kim.brandwijk@gmail.com>",
"homepage": "https://github.com/supergraphql/supergraph#readme",
"repository": {
"type": "git",
"url": "https://github.com/supergraphql/supergraph.git"
},
"bugs": {
"url": "https://github.com/supergraphql/supergraph/issues"
},
"keywords": [
"graphql",
"api-gateway",
"express-middleware",
"koa"
],
"files": [
"dist",
"package.json",
"README.md"
],
"peerDependencies": {
"apollo-link": "^1.0.3",
"graphql": "^0.11.7"
},
"dependencies": {
"apollo-link-http": "^1.2.0",
"apollo-server-express": "^1.2.0",
"express": "^4.16.2",
"graphql-add-middleware": "^0.1.3",
"graphql-tools": "^2.8.0",
"https-proxy-agent": "^2.1.0",
"lodash": "^4.17.4",
"memory-cache": "^0.2.0",
"node-fetch": "^1.7.3"
},
"devDependencies": {
"@types/chai": "^4.0.5",
"@types/express": "^4.0.39",
"@types/lodash": "^4.14.85",
"@types/memory-cache": "^0.2.0",
"@types/mocha": "^2.2.44",
"@types/node": "^8.0.52",
"@types/node-fetch": "^1.6.7",
"@types/sinon": "^4.0.0",
"@types/zen-observable": "^0.5.3",
"apollo-link": "^1.0.3",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"graphql": "^0.11.7",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.15.0",
"nyc": "^11.3.0",
"prettier": "1.8.2",
"sinon": "^4.1.2",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}