-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.17 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
{
"name": "usdc-deployment",
"version": "1.0.0",
"license": "MIT",
"author": "Distributed Lab",
"description": "",
"scripts": {
"build": "npm run forge-install && npm run compile && npm run generate-types",
"forge-install": "make forge-install",
"compile": "npm install --ignore-scripts --prefix ./lib/stablecoin-evm && npm run --prefix ./lib/stablecoin-evm compile",
"generate-types": "typechain --target=ethers-v5 --out-dir './generated-types' './lib/stablecoin-evm/build/contracts/**/*.json'",
"deploy-qtum-testnet": "npx hardhat migrate --network qtumTestnet",
"lint-fix": "npm run lint-ts-fix && npm run lint-json-fix",
"lint-json-fix": "prettier --write \"./**/*.json\"",
"lint-ts-fix": "prettier --write \"**/*.ts\""
},
"dependencies": {
"@nomicfoundation/hardhat-foundry": "1.1.1",
"@solarity/hardhat-migrate": "2.1.8",
"@typechain/ethers-v5": "11.1.2",
"dotenv": "^16.4.5",
"ethers": "5.7.2",
"hardhat": "2.19.4",
"husky": "9.0.11",
"prettier": "^3.2.5",
"qtum-ethers-wrapper": "2.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
}
}