-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.16 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.16 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
{
"name": "Test_Project",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"compile": "npx hardhat clean && npx hardhat compile",
"deploy-token": "npx hardhat clean && npx hardhat compile && npx hardhat run ./scripts-hardhat/deploy_token.ts",
"deploy-staking": "npx hardhat clean && npx hardhat compile && npx hardhat run ./scripts-hardhat/deploy_staking.ts",
"test:token": "npx hardhat test --network hardhat ./test/Add3Token.test.ts",
"test:staking": "npx hardhat test --network hardhat ./test/Staking.test.ts",
"solhint": "solhint contracts/**/*.sol",
"prettier": "prettier --write contracts/**/*.sol test/*.ts"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.1",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.6",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomicfoundation/solidity-analyzer": "^0.1.0",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.7.0",
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"@openzeppelin/hardhat-upgrades": "^1.18.3",
"@openzeppelin/test-environment": "^0.1.9",
"@openzeppelin/test-helpers": "^0.5.15",
"@openzeppelin/truffle-upgrades": "^1.12.0",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.18",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.0.1",
"erc20-test-suite": "^0.2.1",
"ethers": "^5.7.1",
"hardhat": "^2.10.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.9",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-dev.23",
"solhint": "^3.3.7",
"solidity-coverage": "^0.8.2",
"truffle-plugin-verify": "^0.5.25",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^4.7.4"
},
"dependencies": {}
}