forked from AbdelStark/token-vesting-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.89 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
{
"name": "erc20-token-vesting",
"version": "1.0.1",
"description": "ERC20 token vesting smart contracts 💰⏳",
"main": "index.js",
"scripts": {
"prettier": "npx prettier --write .",
"test": "npx hardhat test --logs",
"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"
},
"files": [
"build/abi",
"src"
],
"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": "^5.0.1",
"prettier": "^2.3.0",
"solc": "npm:solc@^0.8.4",
"solidity-coverage": "^0.7.16",
"solidity-docgen": "^0.5.13",
"surya": "^0.4.2",
"truffle": "^5.3.7",
"truffle-assertions": "^0.9.2",
"truffle-flattener": "^1.5.0",
"web3": "^4.1.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"hardhat-preprocessor": "^0.1.5",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.2.0",
"hardhat": "^2.3.0",
"hardhat-abi-exporter": "^2.2.1",
"hardhat-docgen": "^1.1.1",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-tracer": "^1.0.0-alpha.6"
}
}