This repository has been archived by the owner on Nov 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
92 lines (92 loc) · 2.54 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "realm-graphql-client",
"version": "1.4.0",
"description": "A set of helper classes to handle authentication when using the Apollo GraphQL client to consume the Realm Object Server GraphQL API.",
"repository": "https://github.com/realm/realm-graphql",
"license": "SEE LICENSE IN https://realm.io/legal/developer-license-terms/",
"homepage": "https://realm.io",
"author": {
"name": "Realm",
"email": "[email protected]",
"url": "https://realm.io"
},
"keywords": [
"Realm",
"Object",
"Server",
"GraphQL",
"Client",
"Apollo",
"Link",
"Rest"
],
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && tsc -p config/tsconfig.build.json",
"watch": "tsc --watch",
"test": "mocha --opts config/mocha.opts",
"test-watch": "mocha --opts config/mocha.opts --watch",
"clean": "rm -rf dist",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"lint-fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
"docs": "typedoc src"
},
"devDependencies": {
"@types/chai": "^4.0.8",
"@types/chai-arrays": "^1.0.2",
"@types/chai-string": "^1.1.31",
"@types/faker": "^4.1.2",
"@types/fs-extra": "^5.0.4",
"@types/isomorphic-fetch": "0.0.34",
"@types/lodash": "^4.14.117",
"@types/mocha": "^2.2.44",
"@types/tmp": "0.0.33",
"@types/urijs": "^1.15.34",
"@types/uuid": "^3.4.4",
"@types/ws": "^6.0.1",
"apollo-link-error": "^1.0.2",
"chai": "^4.1.2",
"chai-arrays": "^2.0.0",
"chai-exclude": "^1.0.3",
"chai-string": "^1.4.0",
"faker": "^4.1.0",
"fs-extra": "^7.0.0",
"graphql": "^0.13.2",
"graphql-tag": "^2.5.0",
"lodash": "^4.17.11",
"mocha": "^4.0.1",
"realm": "^2.19.0-rc.4",
"realm-graphql-service": "3.4.0",
"realm-object-server": "3.12.0",
"tmp": "0.0.33",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typedoc": "^0.9.0",
"typescript": "2.5.3",
"uuid": "^3.3.2",
"ws": "^3.3.2"
},
"engines": {
"node": ">=6.11"
},
"dependencies": {
"apollo-cache": "^1.1.17",
"apollo-cache-inmemory": "^1.3.5",
"apollo-client": "^2.4.2",
"apollo-link": "^1.0.5",
"apollo-link-context": "^1.0.2",
"apollo-link-http": "^1.5.5",
"apollo-link-retry": "^2.2.8",
"apollo-link-ws": "^1.0.2",
"apollo-utilities": "^1.0.3",
"isomorphic-fetch": "^2.2.1",
"isomorphic-ws": "^4.0.1",
"subscriptions-transport-ws": "0.9.6",
"urijs": "^1.19.0"
}
}