forked from dexe-network/DeXe-Protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.27 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
81
82
83
84
85
86
87
88
{
"name": "@dexe-network/dexe-protocol",
"version": "1.0.1",
"license": "MIT",
"author": "DeXe Protocol",
"readme": "README.md",
"description": "Your gateway to next-gen governance, empowered by the strength of a decentralized community",
"repository": {
"type": "git",
"url": "https://github.com/dexe-network/DeXe-Protocol"
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts",
"dexe",
"dexe-network",
"dexe-protocol"
],
"files": [
"**/*.sol",
"!mock/**/*"
],
"scripts": {
"prepare": "husky",
"compile": "npx hardhat compile --force",
"coverage": "npx hardhat coverage",
"test": "npx hardhat test",
"test-all": "npm run deploy-dev && npm run test",
"private-network": "npx hardhat node",
"private-network-fork": "npx hardhat node --fork https://mainnet.infura.io/v3/$(grep INFURA_KEY .env | cut -d '\"' -f2)",
"deploy-dev": "npx hardhat migrate --network localhost",
"deploy-sepolia": "npx hardhat migrate --network sepolia --verify",
"deploy-amoy": "npx hardhat migrate --network amoy --verify",
"deploy-chapel": "npx hardhat migrate --network chapel --verify",
"deploy-sepolia-optimism": "npx hardhat migrate --network sepoliaOptimism --verify",
"deploy-sepolia-base": "npx hardhat migrate --network sepoliaBase --verify",
"deploy-eth": "npx hardhat migrate --network ethereum --verify",
"deploy-bsc": "npx hardhat migrate --network bsc --verify",
"generate-types": "TYPECHAIN_FORCE=true npx hardhat typechain",
"generate-gobinds": "npx hardhat gobind",
"generate-markups": "npx hardhat markup",
"lint-fix": "npm run lint-sol-fix && npm run lint-js-fix && npm run lint-json-fix",
"lint-json-fix": "prettier --write \"./[a-zA-Z0-9.]+(?!-lock).json\"",
"lint-js-fix": "prettier --write \"./**/*.js\"",
"lint-sol-fix": "prettier --write \"contracts/**/*.sol\"",
"publish-to-npm": "npm run lint-fix && bash ./scripts/publish.sh --public"
},
"dependencies": {
"@openzeppelin/contracts": "4.9.2",
"@openzeppelin/contracts-upgradeable": "4.9.2",
"@solarity/solidity-lib": "2.6.9",
"@spherex-xyz/contracts": "1.0.5",
"@spherex-xyz/engine-contracts": "0.0.1",
"@uniswap/v2-periphery": "1.1.0-beta.0",
"@uniswap/v3-periphery": "1.4.4"
},
"devDependencies": {
"@metamask/eth-sig-util": "^4.0.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@solarity/hardhat-gobind": "^1.2.2",
"@solarity/hardhat-markup": "^1.0.7",
"@solarity/hardhat-migrate": "^2.1.10",
"@openzeppelin/merkle-tree": "^1.0.6",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.3",
"@typechain/truffle-v5": "^8.0.1",
"@typechain/web3-v1": "^6.0.1",
"bignumber.js": "^9.0.1",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"hardhat": "2.20.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^2.0.2",
"husky": "^9.0.11",
"mocha": "^9.1.1",
"prettier": "^3.2.5",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.5.2",
"solhint-plugin-prettier": "^0.1.0",
"solidity-coverage": "^0.8.11",
"truffle-assertions": "^0.9.2",
"typechain": "^8.1.0",
"web3": "^1.7.5"
}
}