This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.35 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
{
"name": "@commonwealth/chain-events",
"version": "0.13.3",
"description": "Listen to various chains for events.",
"license": "GPL-3.0",
"files": [
"dist/"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist/ && tsc --project tsconfig.json && copyfiles -u 1 \"./src/**/*.d.ts\" \"dist\"",
"compile-contracts": "cd eth && npx hardhat compile",
"unit-test": "ts-mocha --config ./.mocharc.json ./test/unit/**/*.spec.ts",
"integration-test": "cd eth && hardhat test ../test/integration/*.spec.ts",
"lint": "eslint src/ test/",
"listen": "ts-node -T ./scripts/listener.ts",
"listenV2": "ts-node -T ./scripts/listenerV2.ts",
"listen-archival": "ts-node -T ./scripts/listener.ts -n edgeware-local -a true",
"scrape": "ts-node -T ./scripts/scraper.ts",
"ganache": "ganache-cli -m \"Alice\" -p 9545 -l 800000000 --allowUnlimitedContractSize",
"batch-poll": "ts-node -T ./scripts/batchPoller.ts",
"preyalcpublish": "yarn build"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hicommonwealth/chain-events.git"
},
"bugs": {
"url": "https://github.com/hicommonwealth/chain-events/issues"
},
"homepage": "https://github.com/hicommonwealth/chain-events#readme",
"dependencies": {
"@ethersproject/abi": "^5.0.0",
"@ethersproject/bytes": "^5.0.0",
"@ethersproject/providers": "^5.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@polkadot/api": "6.0.5",
"@polkadot/api-derive": "6.0.5",
"@polkadot/types": "6.0.5",
"@polkadot/util": "7.4.1",
"bn.js": "^5.1.3",
"ethereum-block-by-date": "^1.4.0",
"ethers": "^5.0.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"node-fetch": "^2.6.1",
"pg": "^8.6.0",
"pg-format": "^1.0.4",
"sleep-promise": "^8.0.1",
"typescript-logging": "^0.6.4",
"underscore": "^1.10.2",
"web3": "^1.3.1",
"web3-core": "^1.3.1",
"web3-utils": "^1.3.1"
},
"devDependencies": {
"@aave/aave-token": "^1.0.4",
"@babel/core": "^7.10.3",
"@babel/polyfill": "^7.10.1",
"@babel/register": "^7.10.3",
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^2.4.0",
"@openzeppelin/contracts-governance": "npm:@openzeppelin/contracts@^4.3.2",
"@typechain/ethers-v5": "^6.0.0",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/underscore": "^1.10.1",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"chai": "^4.2.0",
"copyfiles": "^2.4.1",
"dotenv": "^10.0.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-prettier": "^3.1.2",
"ganache-cli": "^6.9.1",
"hardhat": "^2.6.4",
"hardhat-typechain": "^0.3.5",
"install-peers-cli": "^2.2.0",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "2.0.2",
"rimraf": "^3.0.2",
"ts-generator": "^0.1.1",
"ts-mocha": "^8.0.0",
"ts-node": "^8.10.2",
"typechain": "^4.0.1",
"typescript": "^4.3.4",
"yargs": "^16.1.0"
}
}