-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "lookahead",
"version": "1.0.0",
"description": "Look Ahead GraphQL fields with recursive joins/lookups using Mongo aggregation pipelines for Apollo queries.",
"main": "index.js",
"keywords": [
"mongo",
"apollo",
"join",
"aggregation"
],
"author": "Smith Gajjar <[email protected]> (http://www.smithgajjar.dev)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/smithg09/lookahead"
},
"scripts": {
"test": "jest --watch"
},
"peerDependencies": {
"apollo-server-core": "^3.0.2",
"graphql": "^15.1.0",
"@graphql-tools/utils": "^8.1.1",
"graphql-tag": "^2.9.2",
"mongodb-aggregation-builder": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@graphql-tools/schema": "^8.1.2",
"apollo-server": "^3.12.0",
"apollo-server-core": "^3.1.2",
"apollo-server-express": "^3.12.0",
"babel-jest": "^26.6.3",
"express": "^4.18.2",
"express-graphql": "^0.12.0",
"graphql": "^15.8.0",
"graphql-tag": "^2.12.5",
"jest": "^26.6.3",
"merge-graphql-schemas": "^1.7.8",
"mongo-unit": "^1.5.1",
"mongodb-prebuilt": "^6.5.0",
"mongoose": "^5.13.7"
}
}