-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.41 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-client",
"version": "2.8.2",
"author": "Gadi Cohen <[email protected]>",
"description": "DX focused in-browser database with offline and realtime",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gongojs/gongo-client"
},
"main": "lib/ssr/index.js",
"types": "lib/browser/index.d.ts",
"browser": {
"lib/ssr/index.js": "./lib/browser/index.js",
"lib/ssr/transports/http.js": "./lib/browser/transports/http.js",
"lib/ssr/auth/index.js": "./lib/browser/auth/index.js"
},
"keywords": [
"database",
"indexeddb",
"offline",
"minimongo"
],
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.0",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"fake-indexeddb": "^3.1.2",
"jest": "^28.1.1",
"prettier": "^2.6.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"scripts": {
"lint": "eslint src",
"test": "jest",
"coverage": "jest src --coverage",
"prettier": "prettier -w src",
"build": "tsc",
"prepublishOnly": "yarn build"
},
"dependencies": {
"arson": "^0.2.6",
"bson-objectid": "^2.0.3",
"debug": "^4.3.4",
"ejson": "^2.2.2",
"fast-json-patch": "^3.1.1",
"idb": "^5.0.7",
"modifyjs": "^0.3.1",
"sift": "^16.0.0"
}
}