This repository has been archived by the owner on May 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
99 lines (99 loc) · 3.27 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
{
"name": "@connext/rest-api",
"description": "REST API client for Connext",
"version": "1.3.6",
"repository": {
"type": "git",
"url": "git+https://github.com/connext/rest-api-client.git"
},
"author": "Connext & Friends",
"license": "MIT",
"bugs": {
"url": "https://github.com/connext/rest-api-client/issues"
},
"homepage": "https://github.com/connext/rest-api-client#readme",
"scripts": {
"clean:build": "rm -rf ./build",
"clean:store": "rm -rf ./connext-store",
"clean:all": "npm run clean:build && npm run clean:store",
"compile": "tsc -p tsconfig.json",
"build": "npm run clean:build && npm run compile",
"prod": "node ./build/src",
"start": "npm run build && npm run prod",
"lint": "eslint -c './.eslintrc' --fix './src/**/*.ts'",
"start:dev": "ts-node src/index.ts --watch",
"deploy": "bash ops/deploy.sh"
},
"dependencies": {
"@connext/client": "7.3.17",
"@ethersproject/abi": "5.0.1",
"@ethersproject/abstract-provider": "5.0.1",
"@ethersproject/abstract-signer": "5.0.1",
"@ethersproject/address": "5.0.1",
"@ethersproject/base64": "5.0.1",
"@ethersproject/basex": "5.0.1",
"@ethersproject/bytes": "5.0.1",
"@ethersproject/bignumber": "5.0.1",
"@ethersproject/constants": "5.0.1",
"@ethersproject/contracts": "5.0.1",
"@ethersproject/hash": "5.0.1",
"@ethersproject/hdnode": "5.0.1",
"@ethersproject/json-wallets": "5.0.1",
"@ethersproject/keccak256": "5.0.1",
"@ethersproject/logger": "5.0.2",
"@ethersproject/networks": "5.0.1",
"@ethersproject/pbkdf2": "5.0.1",
"@ethersproject/properties": "5.0.1",
"@ethersproject/providers": "5.0.4",
"@ethersproject/random": "5.0.1",
"@ethersproject/rlp": "5.0.1",
"@ethersproject/sha2": "5.0.1",
"@ethersproject/signing-key": "5.0.2",
"@ethersproject/solidity": "5.0.1",
"@ethersproject/strings": "5.0.1",
"@ethersproject/transactions": "5.0.1",
"@ethersproject/units": "5.0.1",
"@ethersproject/wallet": "5.0.1",
"@ethersproject/web": "5.0.1",
"@ethersproject/wordlists": "5.0.1",
"axios": "^0.21.1",
"core-js": "^3.6.5",
"dotenv": "^8.2.0",
"ethers": "5.0.7",
"fastify": "^3.2.0",
"fastify-auth": "^1.0.1",
"fastify-helmet": "^4.0.2",
"fastify-swagger": "^3.2.0",
"lodash": "^4.17.19",
"pino-pretty": "^4.0.1",
"sqlite3": "5.0.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.4",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/register": "^7.10.4",
"@types/axios": "^0.14.0",
"@types/lodash": "^4.14.159",
"@types/node": "14.0.27",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.5",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "3.9.7"
}
}