forked from WalletConnect/node-walletconnect-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "node-walletconnect-bridge",
"description": "WalletConnect Bridge Server",
"version": "1.0.0-beta",
"private": true,
"keywords": [
"walletconnect",
"ethereum",
"web3",
"crypto"
],
"author": "WalletConnect <walletconnect.org>",
"homepage": "https://walletconnect.org",
"license": "LGPL-3.0",
"dependencies": {
"@babel/polyfill": "^7.11.5",
"@babel/runtime": "^7.11.5",
"axios": "^0.19.2",
"bluebird": "^3.7.2",
"core-js": "^3.6.5",
"fastify": "^2.15.3",
"fastify-helmet": "^3.0.2",
"pino-pretty": "^4.2.1",
"redis": "^2.8.0",
"ws": "^7.3.1"
},
"scripts": {
"build": "babel ./src --extensions \".ts\" --out-dir ./build",
"test": "mocha --require ./babel-polyfill.js test/**/*.spec.ts",
"start": "node ./build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walletconnect/node-walletconnect-bridge.git"
},
"bugs": {
"url": "https://github.com/walletconnect/node-walletconnect-bridge/issues"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.11.5",
"@types/axios": "^0.14.0",
"@types/bluebird": "^3.5.32",
"@types/core-js": "^2.5.3",
"@types/node": "^12.12.55",
"@types/redis": "^2.8.27",
"@types/ws": "^6.0.4",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"tslint": "^5.20.1",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.9.7"
}
}