-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 992 Bytes
/
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
{
"name": "gfijrb-vesting",
"description": "Vesting token contract",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.11",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.31",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.3.1",
"hardhat": "^2.4.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.2",
"web3": "^1.3.4",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.15",
"bn.js": "^5.2.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.1.0"
},
"scripts": {
"build": "npx hardhat compile",
"serve": "npx hardhat node",
"test": "npx hardhat test",
"dist": "npx hardhat flatten contracts/Vesting.sol > ./flat/Vesting.Full.sol",
"prettify": "npx prettier --write 'contracts/**/*.sol'"
},
"license": "MIT"
}