forked from dreamit-de/graphql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "@dreamit/graphql-server",
"version": "0.17.1",
"description": "A GraphQL server written in NodeJS/Typescript.",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"build": "tsc",
"check": "tsc --noEmit --pretty",
"lint": "eslint src/*.ts src/**/*.ts tests/*.ts tests/**/*.ts",
"prepack": "npm run build",
"test": "jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dreamit-de/graphql-server.git"
},
"keywords": [
"GraphQL",
"server"
],
"author": "dreamIT",
"license": "MIT",
"bugs": {
"url": "https://github.com/dreamit-de/graphql-server/issues"
},
"homepage": "https://github.com/dreamit-de/graphql-server#readme",
"devDependencies": {
"@types/content-type": "1.1.5",
"@types/express": "4.17.13",
"@types/jest": "27.4.0",
"@types/node": "17.0.8",
"@typescript-eslint/eslint-plugin": "5.9.1",
"cross-fetch": "3.1.4",
"eslint": "8.6.0",
"eslint-plugin-modules-newline": "0.0.6",
"express": "4.17.2",
"jest": "27.4.7",
"jest-html-reporters": "3.0.3",
"ts-jest": "27.1.2",
"typescript": "4.5.4"
},
"peerDependencies": {
"graphql": "^14.7.0 || ^15.8.0",
"prom-client": "^14.0.1"
},
"dependencies": {
"content-type": "^1.0.4",
"get-stream": "^6.0.1"
}
}