-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 3.04 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
{
"name": "@geo-web/contracts",
"license": "MIT",
"version": "4.3.1",
"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": {
"lint": "yarn lint:ts && yarn lint:sol",
"lint:fix": "yarn lint:ts:fix && yarn lint:sol:fix",
"lint:ts": "eslint --ext ts --ignore-path .gitignore .",
"lint:ts:fix": "eslint --ext ts --ignore-path .gitignore . --fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\"",
"build": "yarn build:sol && yarn build:abi && yarn build:ts",
"build:ts": "npx tsc --build tsconfig.build.json",
"build:abi": "npx hardhat export-abi",
"build:sol": "npx hardhat compile",
"tests:run": "npx hardhat test",
"tests:coverage": "npx hardhat coverage"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.0",
"@superfluid-finance/ethereum-contracts": "1.9.0",
"@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",
"@gnosis.pm/safe-core-sdk": "^3.1.1",
"@gnosis.pm/safe-ethers-adapters": "^0.1.0-alpha.11",
"@gnosis.pm/safe-ethers-lib": "^1.6.1",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts-upgradeable": "^4.7.0",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@openzeppelin/truffle-upgrades": "^1.3.1",
"@solidstate/contracts": "^0.0.42",
"@superfluid-finance/sdk-core": "^0.5.6",
"@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",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"defender-admin-client": "^1.33.0",
"diamond-diff": "^1.0.11",
"dotenv": "^14.3.2",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.9",
"graphql": "^16.3.0",
"hardhat": "^2.9.2",
"hardhat-abi-exporter": "^2.8.0",
"hardhat-deploy": "^0.11.11",
"hardhat-gas-reporter": "^1.0.9",
"js-geo-web-coordinate": "^0.2.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"shx": "^0.3.4",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"solidity-docgen": "^0.6.0-beta.29",
"ts-node": "^10.4.0",
"typechain": "^7.0.0",
"typescript": "^4.5.4",
"web3": "^1.7.0"
}
}