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
/
Copy pathpackage.json
81 lines (81 loc) · 2.23 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
{
"name": "realm-graphql-service",
"version": "3.4.1",
"description": "GraphQL API service for the Realm Object Server",
"repository": "https://github.com/realm/realm-object-server-graphql",
"license": "SEE LICENSE IN https://realm.io/legal/developer-license-terms/",
"homepage": "https://realm.io",
"author": {
"name": "Realm",
"email": "help@realm.io",
"url": "https://realm.io"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"Realm",
"Object",
"Server",
"GraphQL",
"Rest"
],
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf dist; ./node_modules/.bin/tsc",
"clean": "rm -rf dist",
"start": "npm run build && node dist/example-server.js",
"test": "mocha --opts ./mocha.opts",
"lint": "tslint --project tsconfig.json 'src/**/*.ts' 'src/**/*.tsx'",
"lint-fix": "tslint --project tsconfig.json --fix 'src/**/*.ts' 'src/**/*.tsx'",
"docs": "node_modules/typedoc/bin/typedoc src"
},
"peerDependencies": {
"realm-object-server": ">=3.12.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint"
]
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/faker": "^4.1.2",
"@types/graphql": "^0.13.1",
"@types/lru-cache": "^4.1.1",
"@types/mocha": "^5.2.1",
"@types/pluralize": "0.0.28",
"@types/reconnectingwebsocket": "^1.0.1",
"@types/superagent": "^3.8.0",
"@types/urijs": "^1.15.38",
"@types/uuid": "^3.4.3",
"@types/zen-observable": "^0.5.3",
"apollo-link": "^1.2.2",
"chai": "^4.1.2",
"del": "^3.0.0",
"faker": "^4.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"mocha": "^5.2.0",
"realm-object-server": "3.12.0",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"typedoc": "^0.11.1",
"typescript": "^2.9.1"
},
"dependencies": {
"apollo-server-express": "1.3.6",
"apollo-server-core": "1.3.6",
"apollo-server-module-graphiql": "1.3.4",
"graphql": "^0.13.2",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^3.0.2",
"lru-cache": "^4.1.3",
"pluralize": "^7.0.0",
"reconnecting-websocket": "^3.2.2",
"subscriptions-transport-ws": "0.9.14",
"uuid": "^3.2.1"
}
}