-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 964 Bytes
/
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
{
"name": "@graphity/server-express",
"version": "0.9.2",
"description": "Graphity server for Express",
"keywords": [
"graphql",
"express",
"server",
"typescript"
],
"author": "Changwan Jun <[email protected]>",
"license": "MIT",
"repository": "https://github.com/wan2land/graphity/tree/master/packages/graphity-server-express",
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf ./lib && tsc && babel ./src --out-dir ./lib --extensions \".ts\" --ignore \"src/**/*.test.ts\""
},
"dependencies": {
"apollo-server-express": "^3.3.0",
"core-js": "^3.2.1",
"graphql-subscriptions": "^1.2.1",
"portfinder": "^1.0.25",
"subscriptions-transport-ws": "^0.9.19"
},
"devDependencies": {
"graphity": "^0.9.2"
},
"peerDependencies": {
"graphity": "*"
},
"gitHead": "739211f48969b00d15c626bf9450af2f92764888"
}