forked from allo-protocol/allo-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 3.14 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "allo-v2",
"version": "1.0.0",
"description": "Allo Protocol V2",
"main": "index.js",
"repository": "https://github.com/allo-protocol/allo-v2.git",
"author": "Allo Protocol",
"license": "MIT",
"private": true,
"scripts": {
"build": "forge build",
"test": "forge test",
"fmt": "forge fmt contracts/**/*.sol && forge fmt test/**/*.sol",
"fork": "anvil --fork-url",
"chain": "anvil --block-time 10",
"storage-check": "npx @openzeppelin/upgrades-core validate",
"export-abi": "npx hardhat export-abi",
"coverage": "forge coverage --no-match-test 'testFork'",
"coverage:report": "forge coverage --no-match-test 'testFork' --report lcov && lcov --remove ./lcov.info -o ./lcov.info.pruned 'test' 'contracts/core/libraries'",
"coverage:html": "forge coverage --report lcov && lcov --remove ./lcov.info -o ./lcov.info.pruned 'test' 'contracts/core/libraries' && genhtml lcov.info.pruned --branch-coverage --output-dir coverage",
"/////// deploy-core ///////": "echo 'deploy allo-v2'",
"deploy-core": "npx hardhat run scripts/core/_deployCore.ts --network",
"deploy-allo": "npx hardhat run scripts/core/deployAllo.ts --network",
"deploy-registry": "npx hardhat run scripts/core/deployRegistry.ts --network",
"upgrade-allo": "npx hardhat run scripts/core/deployAllo.ts --network",
"deploy-deployer": "npx hardhat run scripts/core/deployDeployer.ts --network",
"/////// deploy-test ///////": "echo 'deploy test scripts'",
"create-profile": "npx hardhat run scripts/test/createProfile.ts --network",
"create-pool": "npx hardhat run scripts/test/createPool.ts --network"
},
"devDependencies": {
"@ethereum-attestation-service/eas-contracts": "^0.28.1",
"@ethereum-attestation-service/eas-sdk": "^0.29.1",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-foundry": "^1.0.2",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solhint": "^3.0.1",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^4.9.1",
"@openzeppelin/contracts-upgradeable": "^4.9.2",
"@openzeppelin/hardhat-upgrades": "^2.0.1",
"@openzeppelin/upgrades-core": "^1.27.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@types/sinon-chai": "^3.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"chai": "^4.3.7",
"dotenv": "^16.1.4",
"eslint": "^8.42.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"ethereum-waffle": "*",
"ethers": "^6.7.1",
"hardhat": "^2.17.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.34",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-preprocessor": "^0.1.5",
"solady": "^0.0.110",
"solidity-coverage": "^0.8.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^5.1.3"
}
}