forked from AbdelStark/token-vesting-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.74 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
{
"name": "token-vesting-contracts",
"version": "0.0.1",
"description": "ERC20 Token Vesting Smart Contracts",
"main": "index.js",
"scripts": {
"prettier": "npx prettier --write .",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage --solcoverjs ./.solcover.js",
"compile": "npx hardhat compile",
"flatten": "npx hardhat flatten",
"check:format": "solhint contracts/*.sol --fix",
"deploy:mainnet": "npx hardhat run scripts/deploy.js --network mainnet",
"deploy:goerli": "npx hardhat run scripts/deploy.js --network goerli",
"deploy:bsc:mainnet": "npx hardhat run scripts/deploy.js --network bscMainnet",
"deploy:bsc:testnet": "npx hardhat run scripts/deploy.js --network bscTestnet",
"tools:surya:graph": "surya graph ./contracts/**/*.sol | dot -Tpng > build/TokenVesting.png",
"tools:surya:report": "surya mdreport build/docs/surya-report.md contracts/TokenVesting.sol"
},
"files": [
"build/abi",
"contracts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abdelhamidbakhta/token-vesting-contracts.git"
},
"keywords": [
"ERC20",
"Ethereum",
"Solidity",
"Smart+Contracts",
"Blockchain"
],
"author": "Abdelhamid Bakhta",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/abdelhamidbakhta/token-vesting-contracts/issues"
},
"homepage": "https://github.com/abdelhamidbakhta/token-vesting-contracts#readme",
"dependencies": {
"@openzeppelin/contracts": "4.8.3",
"prettier": "^2.8.7",
"prettier-plugin-solidity": "^1.1.3",
"solidity-coverage": "^0.8.2",
"solidity-docgen": "^0.6.0-beta.35",
"solmate": "^6.7.0",
"surya": "^0.4.6",
"truffle": "^5.8.1",
"truffle-assertions": "^0.9.2",
"truffle-flattener": "^1.6.0",
"web3": "^1.9.0"
},
"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.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solhint": "^2.0.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.16.0",
"chai": "^4.3.7",
"ethers": "^5.7.2",
"hardhat": "^2.13.0",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-docgen": "^1.3.0",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-tracer": "^1.3.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.4"
},
"prettier": {
"plugins": [
"prettier-plugin-solidity"
],
"endOfLine": "crlf"
}
}