-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.74 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
{
"name": "bella-coin-contracts",
"scripts": {
"compile": "hardhat clean && hardhat compile",
"test:all": "npx hardhat test --show-stack-traces --typecheck && forge test -vvv --ffi --gas-report",
"test": "npx hardhat test --show-stack-traces --typecheck",
"test:fulltraceError": "npx hardhat test --vv --typecheck",
"test:forge": "forge test -vvv --ffi --mt $test_function",
"test:forge:all": "forge test -vvv --ffi",
"test:coverage": "npx hardhat coverage --testfiles 'test/*.ts'",
"deploy": "npx hardhat run ./scripts/deploy.ts --network $npm_config_network",
"play": "npx hardhat run ./scripts/play.ts --network $npm_config_network",
"pump": "npx hardhat run ./scripts/pump.ts --network $npm_config_network",
"size": "npx hardhat size-contracts",
"lint": "prettier --list-different --plugin=prettier-plugin-solidity 'contracts/**/*.sol' && prettier --list-different 'scripts/**/*.ts' && prettier --list-different 'test/**/*.ts'",
"lint-fix": "prettier --write --plugin=prettier-plugin-solidity 'contracts/**/*.sol' && prettier --write 'scripts/**/*.ts' && prettier --write 'test/**/*.ts'"
},
"resolutions": {
"@openzeppelin/contracts": "4.9.5"
},
"devDependencies": {
"@api3/airnode-protocol": "^0.14.1",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "4.9.5",
"@types/node": "^20.11.30",
"dotenv": "^16.4.5",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-tracer": "^2.8.1",
"prettier-plugin-solidity": "^1.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"dependencies": {
"@api3/airnode-admin": "^0.14.1"
}
}