forked from GraphQLGuide/apollo-datasource-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "apollo-datasource-mongodb",
"version": "0.3.0",
"description": "Apollo data source for MongoDB",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "babel src -d dist --ignore **/*.test.js",
"dev": "babel src -d dist --watch --ignore **/*.test.js",
"test": "jest --watch",
"prepublishOnly": "npm run build",
"prettify": "prettier --write **/*.js",
"release": "release patch && echo 'now run `npm publish`'"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@types/mongodb": "^3.5.25",
"@types/mongoose": "^5.7.28",
"apollo-datasource": "^0.3.1",
"apollo-server-caching": "^0.3.1",
"apollo-server-errors": "^2.4.1",
"bson": "^4.1.0",
"dataloader": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"babel-jest": "^24.9.0",
"graphql": "^14.6.0",
"jest": "^24.9.0",
"mongodb": "^3.5.9",
"mongoose": "^5.9.20",
"prettier": "^1.19.1",
"release": "^6.3.0",
"waait": "^1.0.5"
},
"homepage": "https://github.com/GraphQLGuide/apollo-datasource-mongodb",
"repository": {
"type": "git",
"url": "git+https://github.com/GraphQLGuide/apollo-datasource-mongodb"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GraphQLGuide/apollo-datasource-mongodb/issues"
},
"author": "Loren Sands-Ramshaw <[email protected]> (https://graphql.guide)",
"keywords": [
"apollo",
"datasource",
"data source",
"mongodb",
"mongo"
],
"files": [
"/dist",
"index.d.ts"
]
}