This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "graphql-weaver",
"version": "0.14.0",
"description": "A tool to combine, link and transform GraphQL schemas",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc && dependency-check ./package.json",
"prepublishOnly": "npm run build",
"start": "node graphql-proxy",
"test": "tsc --noEmit && node graphql-weaver-test",
"benchmark": "node graphql-weaver-benchmark"
},
"repository": {
"type": "git",
"url": "https://github.com/aeb-labs/graphql-weaver.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@graphql-tools/utils": "^7.10.0",
"@types/colors": "1.1.2",
"@types/cors": "^2.8.1",
"@types/fs-extra": "^3.0.2",
"@types/graphql-type-json": "^0.1.2",
"@types/jasmine": "^3.7.7",
"@types/node": "~12.20.15",
"apollo-server": "^2.25.1",
"colors": "1.1.2",
"dependency-check": "^2.10.1",
"fs-extra": "^3.0.1",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"jasmine": "^3.7.0",
"jasmine-promises": "^0.4.1",
"jasmine-spec-reporter": "^7.0.0",
"jsondiffpatch": "^0.2.4",
"rimraf": "^3.0.2",
"stats-lite": "^2.2.0",
"ts-node": "^10.0.0",
"typescript": "~4.2.4"
},
"dependencies": {
"@graphql-tools/schema": "^7.1.5",
"cross-fetch": "^2.2.2",
"dataloader": "~1.3.0",
"graphql-transformer": "^0.3.0",
"graphql-type-json": "^0.2.1",
"line-column": "^1.0.2",
"trace-error": "~1.0.3"
},
"peerDependencies": {
"graphql": "^15.0.0"
}
}