-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
49 lines (49 loc) · 1.39 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
{
"name": "ido",
"version": "0.5.0",
"description": "",
"main": "index.js",
"scripts": {
"deployTestNet": "npx hardhat deploy --network rinkeby",
"deployLocal": "npx hardhat deploy",
"test": "npx hardhat test",
"node": "npx hardhat node",
"testWithEvents": "npx hardhat test --logs",
"prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"solhint": "solhint -f table contracts/**/*.sol"
},
"husky": {
"hooks": {
"pre-push": "npm run prettier:solidity"
}
},
"keywords": [],
"author": "Milad Mehdizade <milad.mehdizade1394@gmail.com>",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.4",
"hardhat-preprocessor": "^0.1.4",
"hardhat-tracer": "^1.0.0-alpha.6",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint-plugin-prettier": "^0.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"web3": "^1.6.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"bignumber.js": "^9.0.1",
"dotenv": "^10.0.0"
}
}