-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.59 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
{
"name": "tiny-graphql-koa",
"version": "0.9.3",
"description": "Tiny GraphQL-serving middleware for Koa",
"keywords": [
"koa",
"graphql",
"middleware",
"tiny"
],
"repository": {
"type": "git",
"url": "https://github.com/erkkah/tiny-graphql-koa"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"clean": "rm -rf lib && rm -f tsconfig.tsbuildinfo",
"build": "tsc",
"lint": "eslint src/*",
"example": "ts-node -P tsconfig.example.json --files example/index.ts",
"prepack": "npm run clean && npm run build"
},
"author": "Erik Agsjö",
"license": "ISC",
"peerDependencies": {
"graphql": "^14.0.0 || ^15.0.0",
"koa": "^2.13.0"
},
"devDependencies": {
"@types/koa": "^2.11.4",
"@types/koa__router": "^8.0.7",
"@types/koa-bodyparser": "^4.3.0",
"@types/node": "^16.11.34",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"axios": "^0.27.2",
"eslint": "^7.9.0",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.0.2"
},
"dependencies": {
"@graphql-tools/schema": "^6.2.2",
"@graphql-tools/utils": "^6.2.2",
"@koa/router": "^10.1.0",
"@types/jest": "^27.5.0",
"canonicalize": "^1.0.3",
"graphql-api-koa": "^6.0.0",
"graphql-playground-middleware-koa": "^1.6.20",
"graphql-tag": "^2.11.0",
"jest": "^28.1.0",
"koa-bodyparser": "^4.3.0",
"ts-jest": "^28.0.2"
}
}