forked from graphql/express-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.48 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
83
84
{
"name": "express-graphql",
"version": "0.9.0",
"description": "Production ready GraphQL HTTP middleware.",
"license": "MIT",
"private": true,
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://github.com/graphql/express-graphql",
"bugs": {
"url": "https://github.com/graphql/express-graphql/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql/express-graphql.git"
},
"keywords": [
"express",
"restify",
"connect",
"http",
"graphql",
"middleware",
"api"
],
"engines": {
"node": ">= 8.x"
},
"scripts": {
"test": "npm run prettier:check && npm run lint && npm run check && npm run check:ts && npm run testonly",
"test:ci": "yarn check --integrity && npm run prettier:check && npm run lint && npm run check && npm run check:ts && npm run testonly:cover && npm run build",
"testonly": "mocha src/**/__tests__/**/*.js",
"testonly:cover": "nyc npm run testonly",
"lint": "eslint src resources",
"prettier": "prettier --ignore-path .gitignore --write --list-different '**/*.{js,ts,md,json,yml}'",
"prettier:check": "prettier --ignore-path .gitignore --check '**/*.{js,ts,md,json,yml}'",
"check": "flow check",
"check:ts": "dtslint types",
"build": "node resources/build.js",
"changelog": "node resources/gen-changelog.js",
"preversion": ". ./resources/checkgit.sh",
"start": "node -r @babel/register examples/index.js"
},
"dependencies": {
"accepts": "^1.3.7",
"content-type": "^1.0.4",
"http-errors": "^1.7.3",
"raw-body": "^2.4.1"
},
"devDependencies": {
"@babel/core": "7.5.4",
"@babel/plugin-transform-flow-strip-types": "7.4.4",
"@babel/plugin-transform-modules-commonjs": "7.5.0",
"@babel/register": "7.4.4",
"@types/graphql": "^14.2.2",
"@types/node": "^12.6.2",
"babel-eslint": "10.0.2",
"body-parser": "1.19.0",
"chai": "4.2.0",
"connect": "3.7.0",
"coveralls": "3.0.4",
"dtslint": "^0.8.0",
"eslint": "6.0.1",
"eslint-plugin-flowtype": "3.11.1",
"express": "4.17.1",
"flow-bin": "0.102.0",
"graphiql": "^0.13.2",
"graphql": "14.4.2",
"mocha": "6.1.4",
"multer": "1.4.1",
"nyc": "14.1.1",
"prettier": "1.18.2",
"promise-polyfill": "^8.1.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"restify": "4.3.2",
"sinon": "7.3.2",
"supertest": "4.0.2",
"unfetch": "^4.1.0"
},
"peerDependencies": {
"graphql": "^14.4.1"
}
}