forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 982 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": "wundergraph-graphql-ws",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "run-p start:services wundergraph",
"wait-on:services": "wait-on tcp:4000",
"wundergraph": "$npm_execpath run wait-on:services && wunderctl up",
"build:wundergraph": "wunderctl generate",
"build": "npm run build:wundergraph",
"start:services": "ts-node graphql-ws/server.ts",
"check": "tsc --noEmit",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/websocket": "^7.0.1",
"@wundergraph/sdk": "^0.184.2",
"fastify": "^4.6.0",
"graphql": "^16.3.0",
"graphql-ws": "^5.11.2",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"wait-on": "^6.0.1"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/node": "^14.14.37",
"@types/node-fetch": "^2.6.2",
"jest": "^29.6.1",
"node-fetch": "^2.6.7",
"ts-jest": "^29.1.1",
"typescript": "^4.8.2"
}
}