-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"name": "@antstackio/express-graphql-proxy",
"version": "0.2.7",
"description": "a proxy server built on top of express.js for graphql services.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build",
"build": "rm -rf dist && tsc -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antstackio/express-graphql-proxy.git"
},
"keywords": [],
"author": "khubo",
"license": "MIT",
"bugs": {
"url": "https://github.com/antstackio/express-graphql-proxy/issues"
},
"homepage": "https://github.com/antstackio/express-graphql-proxy#readme",
"dependencies": {
"@antstackio/graphql-body-parser": "^0.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.12.5"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.12.5",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}