-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.53 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
{
"name": "fastify-gql",
"version": "2.0.1",
"description": "Fastify barebone GraphQL adapter",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"unit": "tap -J test/*.js",
"lint": "npm run lint:standard && npm run lint:typescript",
"lint:standard": "standard | snazzy",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts",
"typescript": "tsc --project ./test/types/tsconfig.json",
"test": "npm run lint && npm run unit && npm run typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/fastify-gql.git"
},
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/fastify-gql/issues"
},
"homepage": "https://github.com/mcollina/fastify-gql#readme",
"devDependencies": {
"@types/node": "^12.7.12",
"@typescript-eslint/eslint-plugin": "^2.3.3",
"@typescript-eslint/parser": "^2.3.3",
"autocannon": "^4.0.0",
"fastify": "^2.7.1",
"graphql-tools": "^4.0.5",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"snazzy": "^8.0.0",
"standard": "^14.0.0",
"tap": "^14.6.1",
"typescript": "^3.6.4"
},
"dependencies": {
"fastify-plugin": "^1.6.0",
"fastify-static": "^2.5.0",
"fastify-websocket": "^0.6.0",
"graphql": "^14.5.0",
"graphql-jit": "^0.4.0",
"http-errors": "^1.7.3",
"mqemitter": "^3.0.0",
"single-user-cache": "^0.3.0",
"tiny-lru": "^7.0.0"
}
}