generated from FhenixProtocol/fhenix-hardhat-example
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (47 loc) · 2.05 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
{
"name": "fhenix-hardhat-example",
"version": "1.0.0",
"description": "An example repository to get you started with Fhenix development",
"scripts": {
"test": "hardhat test",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"task:deploy": "hardhat deploy",
"task:mint": "hardhat task:mint",
"task:getBalance": "hardhat task:getBalance",
"task:transfer": "hardhat task:transfer",
"task:getFunds": "hardhat task:getFunds",
"task:bid": "hardhat task:bid",
"task:endAuction": "hardhat task:endAuction",
"updateContracts": "cp artifacts/contracts/ExampleToken.sol/ExampleToken.json frontend/contracts/FHERC20.json && cp deployments/localfhenix/ExampleToken.json frontend/contracts/FHERC20_DEPLOY.json && cp artifacts/contracts/Auction.sol/Auction.json frontend/contracts/",
"updateContractTypes": "cp typechain-types/contracts/Auction.ts frontend/contracts/Auction.ts && cp typechain-types/contracts/ExampleToken.ts frontend/contracts/FHERC20.ts",
"localfhenix:start": "hardhat localfhenix:start",
"localfhenix:stop": "hardhat localfhenix:stop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NomicFoundation/hardhat-boilerplate.git"
},
"author": "Nomic Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/NomicFoundation/hardhat-boilerplate/issues"
},
"homepage": "https://github.com/NomicFoundation/hardhat-boilerplate#readme",
"devDependencies": {
"@fhenixprotocol/contracts": "0.1.0-beta.3",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@openzeppelin/contracts": "^5.0.1",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"fhenix-hardhat-docker": "0.1.0-beta.15",
"fhenix-hardhat-plugin": "0.1.0-beta.15",
"hardhat": "^2.20.1",
"hardhat-deploy": "^0.11.45",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.6",
"typescript": "^5.3.3"
}
}