-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.46 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": "smart-sync",
"version": "0.3.4",
"description": "",
"repository": {
"url": "git@github.com:disco-project/smart-sync.git"
},
"main": "./dist/src/cli/smart-sync.js",
"types": "./dist/src/**/*.d.ts",
"bin": {
"smart-sync": "./bin/smart-sync"
},
"files": [
"dist/**/*"
],
"scripts": {
"compile-contracts": "npx grunt compile-contracts",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"test": "npx grunt full-pipeline-test --force",
"lint": "npx grunt eslint",
"evaluate": "npx grunt full-pipeline-evaluation --force",
"build": "tsc -p tsconfig.json"
},
"author": "",
"license": "GPL-3.0",
"dependencies": {
"@ethersproject/abstract-provider": "^5.5.1",
"@ethersproject/bignumber": "^5.5.0",
"@ethersproject/contracts": "^5.5.0",
"@ethersproject/providers": "^5.5.1",
"@ethersproject/web": "^5.5.1",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@openzeppelin/contracts": "^4.4.1",
"@tsconfig/node14": "^1.0.1",
"@types/cli-progress": "^3.9.2",
"chalk": "^5.0.0",
"cli-progress": "^3.9.1",
"commander": "^8.3.0",
"csv-parse": "^5.0.4",
"csv-stringify": "^6.0.5",
"ethers": "^5.5.2",
"hardhat": "^2.8.0",
"merkle-patricia-tree": "^4.2.2",
"node-cron": "^3.0.0",
"rlp": "^2.2.7",
"solc": "^0.8.11",
"solidity-patricia-tree": "^2.0.2",
"solidity-rlp": "^2.0.5",
"ts-generator": "^0.1.1",
"tslog": "^3.3.1",
"web3": "^1.6.1"
},
"devDependencies": {
"@ethersproject/abi": "^5.5.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@tsconfig/node14": "^1.0.1",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"ethereum-waffle": "^3.4.0",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-eslint": "^24.0.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^9.1.3",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typechain": "^6.1.0",
"typescript": "^4.5.4",
"yaml": "^1.10.2"
}
}