-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
110 lines (110 loc) · 3.57 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@xyo-network/sdk-archivist-nodejs",
"version": "0.13.4",
"description": "XYO Archivist SDK",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/XYOracleNetwork/sdk-archivist-nodejs.git"
},
"author": "Arie Trouw <[email protected]>",
"license": "LGPL-3.0",
"files": [
"dist",
"bin"
],
"engineStrict": true,
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"pretest": "yarn install",
"build": "tsc -p tsconfig.build.json && yarn copy && yarn lint",
"lint": "NODE_OPTIONS=--max_old_space_size=8192 eslint --ext .js,.ts ./src",
"fix": "NODE_OPTIONS=--max_old_space_size=8192 eslint --ext .js,.ts ./src --fix",
"clean": "rm -r -f ./node_modules && rm -r -f ./build",
"reinstall": "rm -r -f ./node_modules && rm -f ./yarn.lock && rm -f ./yarn-error.log && yarn install && yarn outdated",
"test": "yarn licensecheck && yarn lint",
"start": "ts-node ./src/index.ts dynamodb",
"copy": "copyfiles -u 1 src/**/*.sql dist/",
"develop": "ts-node --files src/cli.ts",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"xyoPlugins": [
"dist/index.js",
"dist/collector-stats/index.js",
"dist/notify/xyo-websocket-notify.js",
"dist/elastic-search/xyo-geohash-elastic-search.js",
"dist/repository/dynamodb/xyo-dynamo-plugin.js",
"dist/repository/leveldb/plugin/index.js",
"dist/endpoints/plugins/xyo-graphql-block-getter-plugin.js",
"dist/endpoints/plugins/xyo-graphql-public-key-block-plugin.js"
],
"prettier": {
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true
},
"devDependencies": {
"@types/bs58": "^4.0.0",
"@types/elliptic": "^6.4.6",
"@types/graphql-type-json": "^0.3.2",
"@types/jest": "^26.0.22",
"@types/leveldown": "^4.0.0",
"@types/levelup": "^4.3.1",
"@types/lodash": "^4.14.168",
"@types/lru-cache": "^5.1.0",
"@types/mysql": "^2.15.18",
"@types/ngeohash": "^0.6.2",
"@types/node": "^14.14.41",
"@types/node-fetch": "^2.5.10",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"copyfiles": "^2.4.1",
"eslint": "^7.24.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-export-all": "^1.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.1",
"eslint-plugin-typescript-sort-keys": "^1.6.0",
"eslint-plugin-workspaces": "^0.6.2",
"license-checker": "^25.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@types/elasticsearch": "^5.0.37",
"@types/redis": "^2.8.13",
"@types/ws": "^7.4.1",
"@xyo-network/sdk-base-nodejs": "0.7.6",
"@xyo-network/sdk-core-nodejs": "0.71.4",
"abstract-leveldown": "^7.0.0",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"aws-sdk": "^2.887.0",
"bs58": "^4.0.1",
"elasticsearch": "^16.7.2",
"graphql-tag": "^2.10.1",
"leveldown": "^6.0.0",
"levelup": "^4.0.1",
"lodash": "^4.17.21",
"lru-cache": "^6.0.0",
"mysql": "^2.17.1",
"ngeohash": "^0.6.3",
"node-fetch": "^2.5.0",
"prettier": "^2.2.1",
"redis": "^3.1.1",
"snyk": "^1.543.0",
"ws": "^7.4.4"
},
"snyk": true
}