-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
128 lines (128 loc) · 6.57 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "indu-erc-20-token-contract",
"version": "1.0.0",
"description": "An ERC-20 smart contract for indu4.0 (https://www.indu40.io).",
"keywords": [
"ethereum",
"smart-contracts",
"solidity",
"hardhat",
"erc20"
],
"repository": {
"type": "git",
"url": "git+https://github.com/indu40/indu-erc-20-token-contract.git"
},
"homepage": "https://github.com/indu40/indu-erc-20-token-contract.git#readme",
"bugs": {
"url": "https://github.com/indu40/indu-erc-20-token-contract.git/-/issues"
},
"author": "indu4.0 AG <[email protected]>",
"license": "MIT",
"scripts": {
"help": "npx hardhat help",
"accounts": "npx hardhat accounts",
"balances": "npx hardhat balances",
"node:hh": "npx hardhat node",
"clean": "npx hardhat clean",
"test:hh": "npx hardhat test",
"test:forge": "forge test -vvv --root . -c contracts --out forge-artifacts",
"coverage": "npx hardhat coverage",
"compile": "npx hardhat compile",
"build": "forge build --root . -c contracts --out forge-artifacts",
"size": "npx hardhat size-contracts",
"xdeploy": "npx hardhat xdeploy",
"abi": "hardhat export-abi",
"deploy:hh": "npx hardhat run --network hardhat scripts/deploy.ts",
"deploy:localhost": "npx hardhat run --network localhost scripts/deploy.ts",
"deploy:dashboard": "npx hardhat run --network truffle-dashboard scripts/deploy.ts",
"deploy:tenderly": "npx hardhat run --network tenderly scripts/deploy.ts",
"deploy:rinkeby": "npx hardhat run --network rinkeby scripts/deploy.ts",
"deploy:ropsten": "npx hardhat run --network ropsten scripts/deploy.ts",
"deploy:kovan": "npx hardhat run --network kovan scripts/deploy.ts",
"deploy:goerli": "npx hardhat run --network goerli scripts/deploy.ts",
"deploy:sepolia": "npx hardhat run --network sepolia scripts/deploy.ts",
"deploy:ethmain": "npx hardhat run --network ethMain scripts/deploy.ts",
"deploy:bsctestnet": "npx hardhat run --network bscTestnet scripts/deploy.ts",
"deploy:bscmain": "npx hardhat run --network bscMain scripts/deploy.ts",
"deploy:optimismtestnet": "npx hardhat run --network optimismTestnet scripts/deploy.ts",
"deploy:optimismmain": "npx hardhat run --network optimismMain scripts/deploy.ts",
"deploy:arbitrumtestnet": "npx hardhat run --network arbitrumTestnet scripts/deploy.ts",
"deploy:arbitrummain": "npx hardhat run --network arbitrumMain scripts/deploy.ts",
"deploy:arbitrumnova": "npx hardhat run --network arbitrumNova scripts/deploy.ts",
"deploy:mumbai": "npx hardhat run --network mumbai scripts/deploy.ts",
"deploy:polygon": "npx hardhat run --network polygon scripts/deploy.ts",
"deploy:hecotestnet": "npx hardhat run --network hecoTestnet scripts/deploy.ts",
"deploy:hecomain": "npx hardhat run --network hecoMain scripts/deploy.ts",
"deploy:fantomtestnet": "npx hardhat run --network fantomTestnet scripts/deploy.ts",
"deploy:fantommain": "npx hardhat run --network fantomMain scripts/deploy.ts",
"deploy:fuji": "npx hardhat run --network fuji scripts/deploy.ts",
"deploy:avalanche": "npx hardhat run --network avalanche scripts/deploy.ts",
"deploy:sokol": "npx hardhat run --network sokol scripts/deploy.ts",
"deploy:chiado": "npx hardhat run --network chiado scripts/deploy.ts",
"deploy:gnosis": "npx hardhat run --network gnosis scripts/deploy.ts",
"deploy:moonbasealpha": "npx hardhat run --network moonbaseAlpha scripts/deploy.ts",
"deploy:moonriver": "npx hardhat run --network moonriver scripts/deploy.ts",
"deploy:moonbeam": "npx hardhat run --network moonbeam scripts/deploy.ts",
"deploy:alfajores": "npx hardhat run --network alfajores scripts/deploy.ts",
"deploy:celo": "npx hardhat run --network celo scripts/deploy.ts",
"deploy:auroratestnet": "npx hardhat run --network auroraTestnet scripts/deploy.ts",
"deploy:auroramain": "npx hardhat run --network auroraMain scripts/deploy.ts",
"deploy:harmonytestnet": "npx hardhat run --network harmonyTestnet scripts/deploy.ts",
"deploy:harmonymain": "npx hardhat run --network harmonyMain scripts/deploy.ts",
"deploy:autobahn": "npx hardhat run --network autobahn scripts/deploy.ts",
"deploy:spark": "npx hardhat run --network spark scripts/deploy.ts",
"deploy:fuse": "npx hardhat run --network fuse scripts/deploy.ts",
"deploy:cronostestnet": "npx hardhat run --network cronosTestnet scripts/deploy.ts",
"deploy:cronosmain": "npx hardhat run --network cronosMain scripts/deploy.ts",
"deploy:evmostestnet": "npx hardhat run --network evmosTestnet scripts/deploy.ts",
"deploy:evmosmain": "npx hardhat run --network evmosMain scripts/deploy.ts",
"deploy:bobatestnet": "npx hardhat run --network bobaTestnet scripts/deploy.ts",
"deploy:bobamain": "npx hardhat run --network bobaMain scripts/deploy.ts",
"prettier:check": "prettier -c **/*.{js,ts,md,sol,json,yml}",
"prettier:fix": "prettier -w **/*.{js,ts,md,sol,json,yml}",
"solhint:check": "npx solhint 'contracts/**/*.sol'",
"solhint:fix": "npx solhint 'contracts/**/*.sol' --fix",
"lint:check": "yarn prettier:check && yarn solhint:check && npx eslint **/*.{js,ts}",
"lint:fix": "yarn prettier:fix && yarn solhint:fix && npx eslint **/*.{js,ts} --fix"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/test-helpers": "^0.5.16",
"@tenderly/hardhat-tenderly": "^1.7.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eth-sig-util": "^3.0.1",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.7.1",
"hardhat": "^2.13.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.4",
"xdeployer": "^1.2.4"
}
}