forked from graphql/express-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.88 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "express-graphql",
"version": "0.11.0",
"description": "Production ready GraphQL HTTP middleware.",
"license": "MIT",
"private": true,
"main": "index.js",
"types": "index.d.ts",
"typesVersions": {
"<3.8": {
"*": [
"ts3.4/*"
]
}
},
"sideEffects": false,
"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": ">= 10.x"
},
"scripts": {
"preversion": ". ./resources/checkgit.sh && npm ci",
"changelog": "node resources/gen-changelog.js",
"test": "npm run lint && npm run check && npm run testonly:cover && npm run prettier:check && npm run check:spelling && npm run build && npm run check:integrations",
"lint": "eslint .",
"check": "tsc --noEmit",
"testonly": "mocha src/**/__tests__/**/*.ts",
"testonly:cover": "nyc npm run testonly",
"prettier": "prettier --write --list-different .",
"prettier:check": "prettier --check .",
"check:spelling": "cspell '**/*'",
"check:integrations": "mocha --full-trace integrationTests/*-test.js",
"build": "node resources/build.js",
"start": "node -r ./resources/register.js examples/index.ts"
},
"dependencies": {
"accepts": "^1.3.7",
"content-type": "^1.0.4",
"http-errors": "1.8.0",
"raw-body": "^2.4.1"
},
"devDependencies": {
"@types/accepts": "1.3.5",
"@types/body-parser": "1.19.0",
"@types/chai": "4.2.12",
"@types/connect": "3.4.33",
"@types/content-type": "1.1.3",
"@types/express": "4.17.8",
"@types/http-errors": "1.8.0",
"@types/mocha": "8.0.3",
"@types/multer": "1.4.4",
"@types/node": "14.6.3",
"@types/restify": "8.4.2",
"@types/sinon": "9.0.5",
"@types/supertest": "2.0.10",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"body-parser": "1.19.0",
"chai": "4.2.0",
"connect": "3.7.0",
"cspell": "4.1.0",
"downlevel-dts": "0.6.0",
"eslint": "7.8.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-internal-rules": "file:./resources/eslint-internal-rules",
"eslint-plugin-istanbul": "0.1.2",
"eslint-plugin-node": "11.1.0",
"express": "4.17.1",
"graphiql": "1.0.3",
"graphql": "15.3.0",
"mocha": "8.1.3",
"multer": "1.4.2",
"nyc": "15.1.0",
"prettier": "2.1.1",
"promise-polyfill": "8.1.3",
"react": "16.13.1",
"react-dom": "16.13.1",
"restify": "8.5.1",
"sinon": "9.0.3",
"supertest": "4.0.2",
"ts-node": "9.0.0",
"typescript": "4.0.2",
"unfetch": "4.1.0"
},
"peerDependencies": {
"graphql": "^14.7.0 || ^15.3.0"
}
}