-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
118 lines (118 loc) · 3.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
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
111
112
113
114
115
116
117
118
{
"name": "@aurora-is-near/relayer",
"version": "0.0.0",
"description": "NEAR Ethereum JSON RPC interface",
"type": "module",
"module": "lib/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"AUTHORS",
"CHANGES.md",
"LICENSE",
"README.md",
"VERSION",
"package.json",
"lib/index.js",
"lib/index.d.ts",
"lib/indexer.js",
"lib/indexer.d.ts",
"lib/app.js",
"lib/app.d.ts",
"lib/errors.js",
"lib/errors.d.ts",
"lib/server.js",
"lib/server.d.ts"
],
"bin": {
"aurora-relayer": "lib/index.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"format": "prettier -w src",
"lint": "eslint test && eslint **/*.ts",
"start": "nodemon",
"test": "NODE_ENV= jest --forceExit",
"build:schema": "cat etc/schema.sql | cut -d' ' -f2 | xargs cat > .docker/docker-entrypoint-initdb.d/init.txt"
},
"keywords": [
"Aurora",
"Ethereum",
"NEAR",
"Web3"
],
"author": "aurora.dev",
"authors": [
"Arto Bendiken <arto@near.org> (https://ar.to)",
"Illia Polosukhin <ilblackdragon@gmail.com> (https://github.com/ilblackdragon)"
],
"license": "CC0-1.0",
"homepage": "https://github.com/aurora-is-near/aurora-relayer",
"bugs": "https://github.com/aurora-is-near/aurora-relayer/issues",
"repository": "https://github.com/aurora-is-near/aurora-relayer.git",
"dependencies": {
"@aurora-is-near/engine": "github:aurora-is-near/aurora.js#c215790",
"@ethersproject/transactions": "^5.5.0",
"@hqoss/monads": "^0.4.0",
"cloudflare": "^2.9.1",
"commander": "^7.2.0",
"config": "^3.3.6",
"cors": "^2.8.5",
"eth-sig-util": "^3.0.1",
"ethereum-cryptography": "^0.1.3",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-util": "^7.0.10",
"ethers": "^5.5.2",
"express": "^4.17.1",
"express-ipfilter": "^1.2.0",
"express-pino-logger": "^6.0.0",
"express-ws": "^5.0.2",
"fastpriorityqueue": "^0.7.1",
"got": "^11.8.2",
"helmet": "^4.5.0",
"jayson": "aurora-is-near/jayson#8f9b2da",
"jest": "^28.1.0",
"js-yaml": "^4.1.0",
"nanoid": "^3.1.31",
"nats": "^2.6.0",
"node-worker-threads-pool": "^1.5.1",
"pg": "^8.7.1",
"pg-format": "^1.0.4",
"postgres-array": "^3.0.1",
"rlp": "^2.2.7",
"sql-bricks-postgres": "^0.5.0",
"ts-jest": "^28.0.3",
"ws": "^8.2.3"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/body-parser": "^1.19.0",
"@types/cloudflare": "^2.7.6",
"@types/config": "^0.0.38",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-pino-logger": "^4.0.2",
"@types/express-ws": "^3.0.1",
"@types/jest": "^27.5.1",
"@types/js-yaml": "^4.0.0",
"@types/pg": "^7.14.11",
"@types/pg-format": "^1.0.2",
"@types/sql-bricks": "^2.0.1",
"@types/supertest": "^2.0.11",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"nodemon": "^2.0.7",
"pino-pretty": "^4.7.1",
"prettier": "2.2.1",
"supertest": "^6.2.3",
"typedoc": "^0.23.18",
"typescript": "^4.8.4",
"web3": "^1.7.3"
},
"prettier": {
"singleQuote": true
}
}