forked from dotansimha/graphql-yoga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.32 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
74
75
76
77
78
79
80
81
82
{
"name": "graphql-yoga",
"version": "0.0.0-semantic-release",
"main": "dist/index.js",
"typings": "dist/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 <johannes@graph.cool>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphcool/graphql-yoga/issues"
},
"homepage": "https://github.com/graphcool/graphql-yoga",
"scripts": {
"prepublish": "yarn build",
"build": "rm -rf dist && tsc -d",
"lint": "tslint --project tsconfig.json {src,test}/**/*.ts && prettier-check --ignore-path .gitignore {src,.}/{*.ts,*.js}",
"format": "prettier --write --ignore-path .gitignore {src,.}/{*.ts,*.js}",
"test": "yarn lint && yarn build && ava",
"watch:tsc": "tsc --watch",
"watch:ava": "ava --watch",
"watch": "yarn build && npm-run-all --parallel watch:*"
},
"release": {
"branch": "master"
},
"ava": {
"files": [
"dist/**/*.test.js"
]
},
"dependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.11.1",
"@types/graphql": "^0.13.0",
"@types/graphql-deduplicator": "^2.0.0",
"@types/zen-observable": "^0.5.3",
"apollo-server-express": "^1.3.6",
"apollo-server-lambda": "1.3.6",
"apollo-upload-server": "^5.0.0",
"aws-lambda": "^0.1.2",
"body-parser-graphql": "1.1.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0",
"graphql-deduplicator": "^2.0.1",
"graphql-import": "^0.5.0",
"graphql-middleware": "^1.1.0",
"graphql-playground-middleware-express": "1.6.1",
"graphql-playground-middleware-lambda": "1.5.1",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^2.23.1",
"subscriptions-transport-ws": "^0.9.8"
},
"devDependencies": {
"@types/aws-lambda": "8.10.3",
"@types/request-promise-native": "1.0.14",
"ava": "0.25.0",
"npm-run-all": "4.1.2",
"prettier": "1.12.1",
"prettier-check": "2.0.0",
"request": "2.85.0",
"request-promise-native": "1.0.5",
"tslint": "5.9.1",
"tslint-config-prettier": "1.12.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.8.3",
"yarn": "1.6.0"
}
}