-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 2.85 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
{
"name": "fhenix-hardhat-example",
"version": "1.0.0",
"description": "An example repository to get you started with Fhenix development",
"scripts": {
"test": "REPORT_GAS=true hardhat test --network localfhenix",
"test:hardhat": "REPORT_GAS=true hardhat test --network hardhat",
"test:localfhenix": "REPORT_GAS=true hardhat test --network localfhenix",
"clean": "rimraf ./artifacts ./cache ./coverage ./types ./coverage.json ./deployments/localfhenix",
"compile": "hardhat compile",
"--------------": "",
" --- fhenix ---": "",
" --------------": "",
"fhenix:faucet": "hardhat task:fhenix:usefaucet",
"fhenix:checkExposedEncryptedVars": "hardhat task:fhenix:checkExposedEncryptedVars",
"task:deploy": "hardhat deploy",
"play": "hardhat task:play",
"-------------------": "",
" --- localfhenix ---": "",
" -------------------": "",
"localfhenix:start": "pnpm clean && hardhat localfhenix:start",
"localfhenix:faucet": "hardhat task:fhenix:usefaucet",
"localfhenix:deploy": "hardhat deploy --network localfhenix",
"localfhenix:stop": "hardhat localfhenix:stop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fhenixprotocol/fhenix-hardhat-example.git"
},
"author": "Fhenix",
"license": "MIT",
"bugs": {
"url": "https://github.com/fhenixprotocol/fhenix-hardhat-example/issues"
},
"homepage": "https://github.com/fhenixprotocol/fhenix-hardhat-example#readme",
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@fhenixprotocol/contracts": "0.3.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/contracts": "^5.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^5.0.0",
"@types/eslint": "^8",
"@types/mocha": "^9.1.1",
"@types/prettier": "^2",
"@types/qrcode": "^1",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"chai": "^4.3.6",
"chalk": "^5.3.0",
"dotenv": "^16.0.3",
"envfile": "^6.18.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^6.10.0",
"fhenix-hardhat-docker": "0.3.2",
"fhenix-hardhat-network": "0.3.2",
"fhenix-hardhat-plugin": "0.3.2",
"fhenixjs": "0.4.1",
"hardhat": "^2.19.4",
"hardhat-deploy": "^0.12.0",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-gas-reporter": "^1.0.9",
"inquirer": "^12.0.0",
"prettier": "^2.8.4",
"qrcode": "^1.5.1",
"rimraf": "^5.0.5",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^5.1.6"
}
}