-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.2 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.2 KB
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": "@firewatch/evm",
"version": "1.0.0",
"description": "EVM module for Firewatch",
"scripts": {
"lint": "eslint .",
"test:localnet": "cp configs/localnet.module.config.json module.config.json && hardhat test",
"test:mainnet": "cp configs/mainnet.module.config.json module.config.json && hardhat test",
"test:testnet": "cp configs/testnet.module.config.json module.config.json && hardhat test",
"test:devnet": "cp configs/devnet.module.config.json module.config.json && hardhat test",
"clean": "rimraf .turbo dist node_modules"
},
"license": "ISC",
"dependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"chai": "^4.5.0",
"ethers": "^6.13.5",
"bignumber.js": "^9.1.2",
"hardhat": "^2.22.18"
},
"devDependencies": {
"@shared/eslint": "workspace:*",
"@shared/tsconfig": "workspace:*",
"@shared/evm": "workspace:*",
"@testing/mocha": "workspace:*",
"@testing/hardhat": "workspace:*",
"@firewatch/core": "workspace:*",
"@types/chai": "^5.0.1",
"dotenv": "^16.4.7"
}
}