forked from dotansimha/graphql-yoga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "graphql-yoga",
"version": "0.4.7",
"main": "dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/graphql-yoga.git"
},
"keywords": [
"graphql",
"server",
"api",
"graphql-server",
"apollo"
],
"author": "Johannes Schickling <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/graphql-yoga/issues"
},
"homepage": "https://github.com/graphcool/graphql-yoga",
"scripts": {
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -d",
"lint": "tslint --project tsconfig.json {src,test}/**/*.ts",
"test": "npm run lint && npm run build"
},
"dependencies": {
"@types/cors": "^2.8.3",
"@types/express": "^4.0.39",
"@types/graphql": "^0.11.7",
"@types/zen-observable": "^0.5.3",
"apollo-link": "^1.0.7",
"apollo-server-express": "^1.3.2",
"apollo-upload-server": "^4.0.0-alpha.1",
"cors": "^2.8.4",
"express": "^4.16.2",
"graphql": "^0.12.0",
"graphql-playground-middleware-express": "^1.3.15",
"graphql-subscriptions": "^0.5.6",
"graphql-tools": "^2.14.0",
"portfinder": "^1.0.13",
"subscriptions-transport-ws": "^0.9.4"
},
"devDependencies": {
"tslint": "^5.8.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.6.2"
}
}