forked from GraphQLGuide/apollo-datasource-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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": "apollo-datasource-mongodb",
"version": "0.6.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",
"ci": "jest --ci",
"prepublishOnly": "npm run build",
"format": "prettier --write **/*.js",
"release": "release patch && echo 'A Github Action will now publish to NPM! 🚀'"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@apollo/utils.keyvaluecache": "^3.0.0",
"bson": "^5.4.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": "^5.7.0",
"mongoose": "^7.3.2",
"prettier": "^1.19.1",
"release": "^6.3.1",
"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"
]
}