forked from WalletConnect/relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.64 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
{
"name": "@walletconnect/relay-server",
"description": "Relay Server for WalletConnect Protocol",
"version": "2.0.0",
"private": true,
"author": "WalletConnect, Inc. <walletconnect.com>",
"homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
"license": "Apache-2.0",
"keywords": [
"walletconnect",
"ethereum",
"web3",
"crypto"
],
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/walletconnect-monorepo.git"
},
"bugs": {
"url": "https://github.com/walletconnect/walletconnect-monorepo/issues"
},
"scripts": {
"clean": "rm -rf ./dist",
"compile": "tsc -p tsconfig.json",
"dev": "run-p -l watch nodemon",
"nodemon": "nodemon ./dist",
"watch": "tsc -p tsconfig.json --watch",
"build": "run-s clean compile",
"start": "npm run build && node ./dist",
"test": "env TS_NODE_PROJECT=\"tsconfig.json\" mocha --timeout 10000 --exit -r ts-node/register ./test/**/*.spec.ts",
"lint": "eslint -c '.eslintrc' --fix './src/**/*.ts'"
},
"dependencies": {
"@fastify/helmet": "^9.1.0",
"@fastify/websocket": "^6.0.1",
"@walletconnect/encoding": "^1.0.1",
"@walletconnect/jsonrpc-http-connection": "^1.0.3",
"@walletconnect/jsonrpc-provider": "^1.0.5",
"@walletconnect/jsonrpc-utils": "^1.0.3",
"@walletconnect/jsonrpc-ws-connection": "^1.0.3",
"@walletconnect/logger": "^1.0.1",
"@walletconnect/relay-api": "^1.0.6",
"@walletconnect/relay-auth": "^1.0.3",
"@walletconnect/safe-json": "^1.0.0",
"@walletconnect/time": "^1.0.1",
"axios": "^0.26.1",
"fastify": "^4.2.1",
"objects-to-csv": "^1.3.6",
"pino": "^7.10.0",
"pino-pretty": "^7.6.1",
"prom-client": "^14.0.1",
"redis": "^4.0.6",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.1",
"@types/chai-http": "^4.2.0",
"@types/core-js": "^2.5.5",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@types/pino": "^7.0.5",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"core-js": "^3.23.4",
"eslint_d": "^12.2.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-eslint": "^14.1.0",
"ts-node": "^10.8.2",
"typescript": "^4.7.4"
}
}