forked from dotansimha/graphql-yoga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.67 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
{
"name": "graphql-yoga",
"version": "0.0.0-semantic-release",
"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"
},
"release": {
"branch": "master"
},
"dependencies": {
"@types/cors": "^2.8.3",
"@types/express": "^4.0.39",
"@types/graphql": "^0.12.0",
"@types/zen-observable": "^0.5.3",
"apollo-server-express": "^1.3.2",
"apollo-server-lambda": "1.3.2",
"apollo-upload-server": "^4.0.0-alpha.1",
"aws-lambda": "^0.1.2",
"body-parser-graphql": "1.0.0",
"cors": "^2.8.4",
"express": "^4.16.2",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0",
"graphql-import": "^0.4.4",
"graphql-playground-middleware-express": "1.5.7",
"graphql-playground-middleware-lambda": "1.4.3",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^2.18.0",
"subscriptions-transport-ws": "^0.9.6"
},
"devDependencies": {
"@types/aws-lambda": "0.0.33",
"tslint": "5.9.1",
"tslint-config-prettier": "1.9.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.7.2"
}
}