-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "gamoraa-mongostore",
"version": "1.0.1",
"description": "Plugin provides firestore kind of functionality but based on mongodb.",
"main": "dist/src/mongo-store-service.js",
"types": "dist/src/mongo-store-service.d.ts",
"type": "module",
"files": [
"dist",
"proto"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc",
"format": "prettier --write 'src/**/*.ts'",
"start-example": "npm run build && node dist/examples/example.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Techie-Qabila/gamoraa-mongostore.git"
},
"keywords": [
"GRPC",
"gamoraa",
"mongo",
"store",
"mongoose",
"mongostore"
],
"author": "Muhammad Ahmed <[email protected]>",
"license": "MIT",
"dependencies": {
"gamoraa": "^1.0.1",
"grpc-boom": "^1.0.26",
"lodash": "^4.17.15",
"mongoose": "^5.8.9"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/mongodb": "^3.3.14",
"@types/mongoose": "^5.5.41",
"@types/node": "^12.7.8",
"@types/pino": "^5.15.3",
"mongodb-topology-manager": "^2.1.0",
"prettier": "^1.19.1",
"typescript": "^3.7.4"
}
}