-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.46 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
{
"name": "Samurai-Contracts",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/dhipgraby/Samurai-Contracts.git",
"author": "ivo garofalo <[email protected]>",
"license": "MIT",
"scripts": {
"compile": "npx hardhat compile",
"build": "npx hardhat build",
"test": "npx hardhat test",
"deploy-local": "npx hardhat run ./scripts/deploy.js --network localhost",
"deploy-goerli": "npx hardhat run ./scripts/deploy_goerli.ts --network goerli",
"coverage": "npx hardhat coverage --network hardhat --testfiles 'test/*.ts'"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.0",
"chai": "^4.3.10",
"ethers": "^6.7.1",
"hardhat": "^2.17.4",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@chainlink/contracts": "^0.7.1",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@openzeppelin/contracts": "^4.9.3",
"dotenv": "^16.3.1"
}
}