This repository has been archived by the owner on Mar 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 537
/
package.json
113 lines (113 loc) · 3.31 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
105
106
107
108
109
110
111
112
113
{
"name": "express-graphql",
"version": "0.12.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",
"version": "npm test",
"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 && 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:npm": "node resources/build-npm.js",
"start": "node -r ./resources/register.js examples/index.ts",
"start:subscription": "node -r ./resources/register.js examples/index_subscription.ts",
"start:subscription_legacy": "node -r ./resources/register.js examples/index_subscription_legacy.ts"
},
"dependencies": {
"accepts": "^1.3.7",
"content-type": "^1.0.4",
"get-stream": "^6.0.0",
"http-errors": "1.8.0"
},
"devDependencies": {
"@graphiql/toolkit": "^0.1.0",
"@types/accepts": "1.3.5",
"@types/body-parser": "1.19.0",
"@types/chai": "4.2.14",
"@types/connect": "3.4.33",
"@types/content-type": "1.1.3",
"@types/express": "4.17.9",
"@types/http-errors": "1.8.0",
"@types/mocha": "8.0.4",
"@types/multer": "1.4.4",
"@types/node": "14.14.9",
"@types/restify": "8.4.2",
"@types/sinon": "9.0.8",
"@types/supertest": "2.0.10",
"@types/ws": "5.1.2",
"@typescript-eslint/eslint-plugin": "4.8.1",
"@typescript-eslint/parser": "4.8.1",
"body-parser": "1.19.0",
"chai": "4.2.0",
"connect": "3.7.0",
"cspell": "4.2.2",
"downlevel-dts": "0.7.0",
"eslint": "7.13.0",
"eslint-plugin-import": "2.22.1",
"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.4.7",
"graphiql-subscriptions-fetcher": "0.0.2",
"graphql": "15.4.0",
"graphql-ws": "4.1.2",
"mocha": "8.2.1",
"multer": "1.4.2",
"nyc": "15.1.0",
"prettier": "2.2.0",
"promise-polyfill": "8.2.0",
"react": "16.14.0",
"react-dom": "16.14.0",
"restify": "8.5.1",
"sinon": "9.2.1",
"subscriptions-transport-ws": "0.9.18",
"supertest": "6.0.1",
"ts-node": "9.0.0",
"typescript": "4.1.2",
"unfetch": "4.2.0",
"ws": "5.2.2"
},
"peerDependencies": {
"graphql": "^14.7.0 || ^15.3.0"
}
}