-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.25 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.25 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
{
"name": "SignExample",
"version": "1.0.0",
"description": "Check provided signature on chain",
"main": "index.js",
"repository": "git@github.com:KiselevMaxim/SignExample.git",
"author": "Maksim <maximkiselevrossia@gmail.com>",
"license": "MIT",
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-web3": "^2.0.0",
"dotenv": "^10.0.0",
"hardhat": "^2.8.0",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0"
},
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"prettier-test": "npx prettier --write test --print-width 120 --tab-width 2",
"prettier-scripts": "npx prettier --write scripts --print-width 120 --tab-width 2",
"prettier-utils": "npx prettier --write utils --print-width 120 --tab-width 2",
"prettier-sol": "prettier --write \"contracts/**/*.sol\" --print-width 120 --tab-width 4",
"deploy-hardhat": "npx hardhat run scripts/deploy.js --network hardhat",
"deploy-mumbai": "npx hardhat run scripts/deploy.js --network mumbai"
}
}