-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.3 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.3 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@xyo-network/sdk-diviner-nodejs",
"version": "0.15.10",
"description": "XYO Diviner SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/XYOracleNetwork/sdk-diviner-nodejs.git"
},
"author": "Arie Trouw <arie.trouw@xyfindables.com>",
"license": "LGPL-3.0",
"files": [
"dist",
"bin"
],
"engineStrict": true,
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"pretest": "yarn install",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"test": "yarn lint",
"build": "yarn xybuild && yarn copy",
"copy": "copyfiles -u 1 src/**/*.sql dist/",
"develop": "ts-node --files src/cli.ts",
"license": "yarn license-checker --onlyAllow 'MIT;BSD;BSD-2-Clause;BSD-3-Clause;Apache-2.0;ISC;Unlicense;UNKNOWN;BSD*;CC0-1.0' --excludePackages 'colors@0.6.2'"
},
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true
},
"xyoPlugins": [
"dist/chain/plugin/index.js",
"dist/payment/eth/plugin/index.js",
"dist/payment/lightning/plugin/index.js",
"dist/payment/plugin/index.js",
"dist/payment/repository/dynammodb/plugin/index.js",
"dist/payment/repository/firestore/plugin/index.js",
"dist/query/plugin/query/index.js",
"dist/rewards/xyo-rewards-plugin.js",
"dist/query/plugin/query-chain-tracer/index.js",
"dist/query/plugin/query-geohash/index.js",
"dist/query/plugin/query-page/index.js",
"dist/query/plugin/query-time/index.js",
"dist/debug/plugin/index.js",
"dist/reports/xyo-query-report-plugin.js",
"dist/reports/dynanmo/dynanmo-report-repository-plugin.js"
],
"devDependencies": {
"@types/ethereumjs-abi": "^0.6.3",
"@types/ethereumjs-tx": "^2.0.0",
"@types/graphql": "^14.5.0",
"@types/graphql-type-json": "^0.3.2",
"@types/hapi": "^18.0.3",
"@types/jest": "^25.1.3",
"@types/leveldown": "^4.0.2",
"@types/levelup": "^4.3.0",
"@types/lodash": "^4.14.149",
"@types/lru-cache": "^5.1.0",
"@types/mysql": "^2.15.9",
"@types/node": "^13.7.7",
"@types/web3": "^1.2.2",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"copyfiles": "^2.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"license-checker": "^25.0.1",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@hapi/hapi": "^19.1.1",
"@types/redis": "^2.8.13",
"@xyo-network/sdk-base-nodejs": "0.6.6",
"@xyo-network/sdk-core-nodejs": "0.70.22",
"abstract-leveldown": "^6.2.2",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.8",
"apollo-link-http": "^1.5.16",
"apollo-server": "^2.11.0",
"aws-sdk": "^2.633.0",
"bs58": "^4.0.1",
"eth-sig-util": "2.5.2",
"firebase": "^7.14.1",
"firebase-admin": "^8.10.0",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"graphql-type-json": "^0.3.1",
"ipfs-http-client": "^42.0.0",
"leveldown": "^5.5.1",
"levelup": "^4.3.2",
"lodash": "^4.17.15",
"lru-cache": "^5.1.1",
"opennode": "^1.2.1",
"redis": "^3.0.2",
"web3": "^1.2.6",
"yargs": "^15.1.0"
}
}