-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.18 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
{
"name": "ionx-ccip",
"version": "1.0.0",
"repository": "https://github.com/Charged-Particles/ionx-ccip.git",
"author": "Firma Lux, Inc. <charged.fi>",
"license": "MIT",
"main": "index.js",
"scripts": {
"reinstall": "rm -rf node_modules && rm -f yarn.lock && yarn clean && yarn",
"clean": "rm -rf abis build cache typechain-types coverage coverage.json test-results.xml",
"compile": "hardhat --show-stack-traces --max-memory 8192 compile",
"test": "yarn clean-test && hardhat test --show-stack-traces",
"watch-test": "hardhat watch test",
"hint": "solhint \"contracts/**/*.sol\"",
"coverage": "yarn clean-test && hardhat --show-stack-traces coverage --temp coverage_build && yarn clean-test",
"gas": "REPORT_GAS=true hardhat test",
"gen-docs": "solidity-docgen -i contracts -o docs",
"deploy": "hardhat deploy --tags SetupSource --network",
"setup": "hardhat deploy --tags SetupConnection --network",
"test-bridge": "hardhat deploy --tags TestConnection --network",
"bridge": "hardhat deploy --tags TokenBridge --network"
},
"devDependencies": {
"@chainlink/local": "^0.2.1",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.3",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.8",
"@nomicfoundation/ignition-core": "^0.15.5",
"@openzeppelin/contracts": "^5.0.2",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.0",
"@types/lodash": "^4.17.6",
"@types/mocha": ">=9.1.0",
"@types/node": ">=12.0.0",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"erc20permit": "^0.1.1",
"ethers": "^6.6.2",
"hardhat": "^2.14.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-gas-reporter": "^2.2.0",
"lodash": "^4.17.21",
"solidity-coverage": "^0.8.0",
"ts-node": ">=8.0.0",
"typechain": "^8.3.1",
"typescript": ">=4.5.0"
}
}