-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.61 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
{
"name": "realitycards",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"prettier": "prettier --write contracts/RealityCards.sol",
"update-graph-abis": "npx buidler compile && cp ./artifactsTruffle/RCFactory.json ../RealityCards-Client/subgraph/abis/RealityCardsFactory.json && cp ./artifactsTruffle/RCTreasury.json ../RealityCards-Client/subgraph/abis/RealityCardsTreasury.json && cp ./artifactsTruffle/RCMarket.json ../RealityCards-Client/subgraph/abis/RealityCardsMarket.json",
"coverage": "hardhat coverage"
},
"keywords": [],
"author": "Andrew Stanger",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.15.0",
"@codechecks/client": "^0.1.11",
"@openzeppelin/contracts": "^4.3.0",
"@truffle/contract": "^4.3.30",
"@truffle/hdwallet-provider": "^1.4.3",
"acorn": "^8.4.1",
"dotenv": "^10.0.0",
"minimist": "^1.2.5",
"sha3": "^2.1.4",
"truffle-contract-size": "^2.0.1",
"truffle-plugin-verify": "^0.5.11",
"typescript": "^4.3.5",
"underscore": "^1.13.1",
"web3": "^1.5.2",
"web3-core-promievent": "^1.5.2",
"web3-eth-abi": "^1.5.2",
"web3-utils": "^1.5.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.13",
"eth-gas-reporter": "^0.2.22",
"hardhat": "^2.6.0",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.16"
}
}