-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.21 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
{
"name": "ape-market-core",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@ethersproject/contracts": "^5.4.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.2.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.1",
"ethlint": "^1.2.5",
"fs-extra": "^10.0.0",
"hardhat": "^2.4.1",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.3.6"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test-frontend": "react-scripts test",
"eject": "react-scripts eject",
"test": "npx hardhat test",
"test:gas": "GAS_REPORT=yes npx hardhat test",
"clean": "rm -rf cache && rm -rf src/artifacts",
"compile": "npx hardhat compile",
"size": "npx hardhat size-contracts",
"export": "bin/exportABIs.js",
"lint": "prettier --write 'contracts/**/*.sol' && solhint 'contracts/**/*.sol'"
},
"dependencies": {
"require-or-mock": "^0.2.0"
}
}