forked from wundergraph/wundergraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.64 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@wundergraph/sdk",
"version": "0.96.1",
"license": "Apache-2.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
},
"./dist/*": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"typesVersions": {
"*": {
"client": [
"./dist/client"
]
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"description": "WunderGraph SDK",
"files": [
"dist"
],
"bin": {
"wunderctl": "./dist/wunderctl/bin/run.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wundergraph/wundergraph.git"
},
"homepage": "https://wundergraph.com",
"author": {
"name": "WunderGraph Maintainers",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/wundergraph/wundergraph/issues"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc",
"test": "jest",
"test:int": "TEST_INTEGRATION=true jest"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.22",
"@types/colors": "^1.2.1",
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.1",
"@types/js-yaml": "^4.0.0",
"@types/json-schema": "^7.0.6",
"@types/lodash": "^4.14.178",
"@types/node": "^14.18.16",
"@types/object-hash": "^1.3.4",
"chai": "^4.3.4",
"jest": "^28.1.0",
"ts-jest": "^28.0.4",
"typescript": "^4.7.2"
},
"dependencies": {
"@apollo/composition": "^2.0.2",
"@apollo/federation": "^0.36.2",
"@graphql-tools/schema": "^8.3.10",
"@prisma/generator-helper": "^3.9.2",
"@wundergraph/protobuf": "workspace:^0.91.1",
"@wundergraph/wunderctl": "workspace:^0.94.5",
"axios": "^0.26.1",
"colors": "^1.4.0",
"execa": "5.1.1",
"fastify": "^3.27.1",
"fastify-graceful-shutdown": "^3.1.0",
"fastify-plugin": "^3.0.1",
"graphql": "^16.3.0",
"graphql-helix": "^1.12.0",
"handlebars": "^4.7.7",
"headers-polyfill": "^3.0.7",
"js-yaml": "^4.1.0",
"json-schema": "^0.4.0",
"lodash": "^4.17.21",
"long": "^5.2.0",
"object-hash": "^2.2.0",
"openapi-types": "^10.0.0",
"postman-collection": "^4.1.1",
"prettier": "^2.5.0",
"protobufjs": "^6.11.2",
"swagger2openapi": "^7.0.8"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"dist"
],
"testEnvironment": "node"
},
"sideEffects": false
}