-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
74 lines (74 loc) · 2.54 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
{
"name": "0xbitcointoken",
"version": "1.10.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"disklet": "^0.5.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.4.0",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4"
},
"dependencies": {
"@eth-optimism/hardhat-ovm": "^0.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^2.1.5",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^4.3.0",
"@openzeppelin/contracts-upgradeable": "^4.3.0",
"@tenderly/hardhat-tenderly": "^1.0.10",
"@typechain/ethers-v5": "^7.1.0",
"@typechain/hardhat": "^6.0.0",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/dotenv": "^8.2.0",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.0.0",
"@types/semver": "^7.3.9",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.1",
"eslint": "^7.14.0",
"eslint-config-standard-kit": "0.15.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^6.0.1",
"ethereum-waffle": "^3.1.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.4.4",
"hardhat": "2.6.0",
"hardhat-deploy": "0.9.3",
"@mangrovedao/hardhat-test-solidity": "^0.0.16",
"mocha": "^7.1.0",
"moment": "^2.29.1",
"node-watch": "^0.7.0",
"payspec-js": "^0.16.0",
"ramda": "^0.27.1",
"ts-node": "^10.3.0",
"typechain": "^5.2.0",
"typescript": "^4.1.3"
},
"scripts": {
"test": "DISABLE_LOGS=true TS_NODE_TRANSPILE_ONLY=1 TESTING=1 yarn hardhat test",
"coverage": "DISABLE_LOGS=true FORKING_NETWORK=mainnet TS_NODE_TRANSPILE_ONLY=1 TESTING=1 yarn hh coverage",
"fork:mainnet": "FORKING_NETWORK=mainnet TS_NODE_TRANSPILE_ONLY=1 yarn hh fork --network hardhat",
"shell": "yarn solidity-shell",
"chain": "yarn hh node --no-deploy",
"compile": "COMPILING=true yarn hardhat compile",
"build": "yarn compile --force && yarn tsc",
"deploy": "yarn hardhat deploy",
"export": "yarn hardhat export:deployments",
"accounts": "yarn hardhat accounts",
"balance": "yarn hardhat balance",
"send": "yarn hardhat send",
"generate": "yarn hardhat generate",
"account": "yarn hardhat account",
"verify": "yarn hardhat etherscan-verify"
}
}