-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.9 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
{
"name": "@hydre/graphql-http",
"version": "1.13.3",
"description": "GraphQL over http",
"type": "module",
"exports": {
"./koa": "./src/koa.js",
"./fastify": "./src/fastify.js",
"./lambda": "./src/lambda.js",
"./tinyhttp": "./src/tinyhttp.js"
},
"scripts": {
"test": "node test/index.test.js",
"lint": "eslint . && prettier . --check",
"format": "prettier . --write && eslint . --fix",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HydreIO/graphql-http.git"
},
"keywords": [
"graphql"
],
"babel": {
"parserOpts": {
"allowAwaitOutsideFunction": true
}
},
"publishConfig": {
"access": "public"
},
"author": "HydreIO Team",
"license": "UNLICENSE",
"bugs": {
"url": "https://github.com/HydreIO/graphql-http/issues"
},
"homepage": "https://github.com/HydreIO/graphql-http#readme",
"dependencies": {
"@hydre/make_schema": "^1.1.0",
"graphql": "^16.6.0",
"node-fetch": "^3.3.1"
},
"devDependencies": {
"@babel/core": "7.21.8",
"@babel/eslint-parser": "7.21.8",
"@hydre/doubt": "^7.3.1",
"@hydre/pino-human": "1.3.0",
"@tinyhttp/app": "^2.0.31",
"@types/node": "20.1.0",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"fastify": "^4.17.0",
"husky": "^4.3.8",
"koa": "^2.14.2",
"koa-bodyparser": "^4.4.0",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"tap-spec-emoji": "^6.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": "prettier --write",
"*.md": "prettier --write",
"*.yml": "prettier --write"
}
}