-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.01 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@sc1/contracts",
"version": "0.5.11",
"main": "index.js",
"private": true,
"scripts": {
"test": "forge test",
"test:hardhat": "hardhat test",
"dev": "yarn export",
"deploy:local": "hardhat --network localhost deploy",
"deploy:avalanche": "hardhat --network avalanche deploy",
"deploy:fantom": "hardhat --network fantom deploy",
"runScript": "hardhat run",
"local": "hardhat node",
"build": "hardhat compile",
"compile": "hardhat compile",
"export": "hardhat export --export-all ./node_modules/@sc1/common/lib/contracts.json",
"fork": "INFURA_API_KEY=$(grep INFURA_API_KEY .env | cut -d '=' -f2) bash ./scripts/fork.sh",
"cover": "yarn workspace @sc1/contracts cover",
"coverage": "forge coverage --report lcov",
"slither": "slither ./packages/contracts --solc-remaps '@openzeppelin=node_modules/@openzeppelin' --exclude ./packages/contracts/src/test",
"postinstall": "patch-package && yarn export"
},
"dependencies": {
"@anders-t/ethers-ledger": "^1.0.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.10",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@sc1/common": "^0.13.2",
"@typechain/ethers-v5": "^8.0.5",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.0",
"hardhat": "2.8.4",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.11.11",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"pub": "^0.2.0",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"typechain": "^6.0.5",
"patch-package": "^6.4.7"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.6.0-dev.20211111"
},
"resolutions": {
"hardhat/**/@ethereumjs/tx": "3.5.0"
}
}