-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
60 lines (60 loc) · 1.98 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
{
"name": "@geo-web/contracts",
"license": "MIT",
"version": "0.0.2",
"description": "GeoWeb solidity contracts, artifacts, & types",
"author": "GeoWebCore",
"homepage": "https://www.geoweb.network/",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "yarn build:sol && yarn build:abi && yarn build:ts && yarn build:declarations",
"build:ts": "npx tsc --build tsconfig.build.json",
"build:abi": "npx hardhat export-abi",
"build:sol": "npx hardhat compile",
"build:declarations": "shx cp typechain-types/*.d.ts dist/typechain-types",
"tests:run": "npx hardhat test",
"tests:coverage": "npx hardhat coverage"
},
"dependencies": {
"@superfluid-finance/ethereum-contracts": "^1.0.0-rc.11",
"@truffle/hdwallet-provider": "^1.1.1",
"bn.js": "^5.1.3",
"date-fns": "^2.28.0",
"remixd": "^0.2.4-alpha.0"
},
"devDependencies": {
"@defi-wonderland/smock": "^2.0.7",
"@matterlabs/hardhat-zksync-deploy": "^0.1.2",
"@matterlabs/hardhat-zksync-solc": "^0.1.1",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"@openzeppelin/truffle-upgrades": "^1.3.1",
"@superfluid-finance/sdk-core": "^0.3.0",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.13",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"dotenv": "^14.3.2",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.2",
"graphql": "^16.3.0",
"hardhat": "^2.9.2",
"hardhat-abi-exporter": "^2.8.0",
"shx": "^0.3.4",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.4.0",
"typechain": "^7.0.0",
"typescript": "^4.5.4",
"web3": "^1.7.0",
"zksync-web3": "^0.2.11"
}
}