This repository has been archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 2.41 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
{
"name": "in-dex-explorer-backend",
"version": "1.0.0",
"author": "we-commit|1devndogs",
"license": "",
"description": "in-dex-explorer, a transaction explorer for defi, with mempool live data, currently in development.",
"keywords": [
"ethereum",
"uniswap",
"defi",
"mempool",
"sushiswap"
],
"scripts": {
"pretty": "prettier --config .prettierrc 'src/**/*.ts' --write",
"build": "tsc",
"set-heroku": "ts-node ./src/utils/initServer/set-heroku.ts",
"ci": "ts-node ./src/utils/initServer/create-indexes.ts",
"it": "ts-node ./src/utils/initServer/init-tokens.ts",
"ip": "ts-node ./src/utils/initServer/init-pools.ts",
"iw": "ts-node ./src/utils/initServer/init-whales.ts",
"dev-d-txs": "ts-node ./src/utils/dev-utils/drop-transactions.ts",
"dev-r-txs": "ts-node ./src/utils/dev-utils/reset-transactions.ts",
"dev-r-txc": "ts-node ./src/utils/dev-utils/reset-transactions-c.ts",
"dev-r-txp`": "ts-node ./src/utils/dev-utils/reset-transactions-p.ts",
"dev-r-t-h": "ts-node ./src/utils/dev-utils/reset-transactions-t-h.ts",
"dev-r-pools": "ts-node ./src/utils/dev-utils/reset-pools.ts",
"dev-r-blocks": "ts-node ./src/utils/dev-utils/reset-blocks.ts",
"dev-r-tokens": "ts-node ./src/utils/dev-utils/reset-tokens.ts",
"acp": "func() { git add --all && git commit -m ${1} && git push origin ${2} ;}; func",
"lcs": "ts-node-dev ./src/listener-commons.ts",
"lm": "ts-node-dev ./src/listener-mempool.ts",
"lc": "ts-node-dev ./src/listener-confirmation.ts",
"web": "ts-node-dev ./src/_websocket-server.ts"
},
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.12.2",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.2.1",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.6",
"tslib": "^2.3.0",
"typescript": "^4.3.2"
},
"dependencies": {
"@ethersproject/shims": "^5.4.0",
"@sushiswap/core": "1.4.2",
"@sushiswap/sdk": "5.0.0-canary.7",
"@uniswap/sdk-core": "^3.0.0",
"@uniswap/v2-core": "1.0.0",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v2-sdk": "^3.0.0-alpha.2",
"@uniswap/v3-core": "1.0.0",
"@uniswap/v3-periphery": "1.0.0",
"@uniswap/v3-sdk": "^3.0.0",
"consola": "^2.15.3",
"dotenv": "^8.2.0",
"ethers": "^5.3.1",
"express": "^4.16.4",
"mongoose": "^5.11.15",
"socket.io": "^4.0.0"
}
}