-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "gongo-server-db-mongo",
"version": "3.2.5",
"author": "Gadi Cohen <[email protected]>",
"description": "MongoDB support for GongoJS gongo-server",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gongojs/gongo-server-db-mongo"
},
"main": "./lib/databaseAdapter.js",
"types": "./lib/databaseAdapter.d.js",
"keywords": [
"database",
"serverless",
"mongodb",
"mongo",
"gongo",
"gongojs"
],
"scripts": {
"lint": "eslint src",
"test": "jest",
"coverage": "jest --coverage",
"prettier": "prettier -w src",
"build": "tsc",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"fast-json-patch": "^3.1.1",
"json-pointer": "^0.6.2",
"jsonpatch-to-mongodb": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
"bson": "6.2.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^9.0.0",
"jest": "^29.6.4",
"mongo-mock": "^4.1.0",
"mongodb": "6.2.0",
"mongodb-rest-relay": "1.9.2",
"prettier": "^3.0.2",
"ts-jest": "^29.1.1",
"typescript": "5.2.2"
},
"peerDependencies": {
"bson": "6.2.0",
"gongo-server": "^3.3.1",
"mongodb": "6.2.0",
"mongodb-rest-relay": "1.9.3"
}
}