-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (79 loc) · 3.79 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
74
75
76
77
78
79
80
{
"name": "ufarm-evm-contracts",
"description": "UFarm EVM Smart Contracts",
"version": "1.4.4",
"main": "index.js",
"devDependencies": {
"@chainlink/contracts": "^0.8.0",
"@dlsl/hardhat-markup": "^1.0.0-rc.14",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@oldzeppelin/contracts": "npm:@openzeppelin/[email protected]",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/hardhat-upgrades": "^1.27.0",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v3-core": "1.0.2-solc-0.8-simulate",
"@uniswap/v3-periphery": "^1.4.3",
"@uniswap/v3-sdk": "^3.11.0",
"base64-sol": "1.1.0",
"bignumber.js": "^9.1.1",
"copyfiles": "^2.4.1",
"csv-parser": "^3.0.0",
"dotenv": "^16.1.3",
"eip-712": "^1.0.0",
"ethereum-multicall": "^2.21.0",
"hardhat": "^2.17.3",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-dependency-compiler": "^1.1.3",
"hardhat-deploy": "^0.11.30",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-tracer": "^2.6.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3"
},
"scripts": {
"clean": "rm -rf ./artifacts ./cache ./typechain-types ./docs",
"compile": "hardhat compile",
"docgen": "npx hardhat docgen --no-compile",
"markup": "npx hardhat markup",
"prettier:solidity": "prettier --write contracts/**/*.sol",
"test": "npx hardhat test",
"size": "npx hardhat size-contracts",
"start": "npx hardhat node",
"start-no-deploy": "npx hardhat node --no-deploy",
"start:cold": "npm install && npx hardhat node --no-impersonation --export './deployments.json'",
"deploy-arbitrum-like-hardhat": "npx hardhat deploy --network hardhat --tags ArbitrumENV --export './deployments-arbitrum.json'",
"deploy-arbitrum": "npx hardhat deploy --network arbitrum --tags ArbitrumENV --export './deployments-arbitrum.json'",
"deploy-univ2-local": "hardhat deploy --network localhost --tags UniV2Pairs --export './deployments.json'",
"deploy-sepolia-all": "hardhat deploy --network arbitrumSepolia --tags SepoliaEnv --no-compile --export './deployments-arbitrumSepolia.json'",
"deploy-ufarm-all": "hardhat deploy --network ufarm --tags TestEnv --export './deployments.json'",
"deploy-ufarmLocal-all": "hardhat deploy --network ufarmLocal --tags TestEnv --export './deployments.json'",
"deploy-ufarmDocker-all": "hardhat deploy --network ufarmDocker --tags TestEnv --no-compile --export '/var/log/ufarm/deployments.json'",
"deploy-ufarmDemoDocker-all": "hardhat deploy --network ufarmDemoDocker --tags TestEnv --no-compile --export '/var/log/ufarm/deployments.json'",
"deploy-hardhat-all": "hardhat deploy --network hardhat --tags TestEnv --export './deployments.json'",
"deploy-local-all": "hardhat deploy --network localhost --tags TestEnv --export './deployments.json'",
"task-add-permissions-local": "npx hardhat grantUFarmPermissions --permissions '2,3' --network localhost",
"task-create-fund-local": "npx hardhat createFund --network localhost --name 'Fund Name'",
"typings-copy-artifacts": "ts-node scripts/typings-copy-artifacts.ts",
"typings-copy-deployments": "copyfiles -u 1 -e './deployments/**/solcInputs/**' './deployments/**/*.*' 'ufarm-evm-typings/build/deployments'",
"typings-prebuild": "npm run typings-copy-artifacts && npm run typings-copy-deployments",
"run-swaps": "npx hardhat run --no-compile scripts/pool-data.ts",
"run-univ2-rates": "npx hardhat run --no-compile scripts/setUniV2Rate.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:UFarmDigital/ufarm-evm-contracts.git"
},
"keywords": [
"UFarm",
"UFarm Digital",
"EVM"
],
"author": "Evgenii Valeev",
"license": "BUSL-1.1",
"bugs": {
"url": "https://github.com/UFarmDigital/ufarm-evm-contracts/issues"
},
"homepage": "https://github.com/UFarmDigital/ufarm-evm-contracts#readme"
}