-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 1.32 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
{
"name": "sol-challenge",
"version": "1.0.0",
"main": "index.js",
"author": "massun-onibakuchi",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"hardhat": "^2.9.4"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.0.0",
"@typechain/hardhat": "^6.0.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.7",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^8.6.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.5",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-node": "^10.4.0",
"typechain": "^8.0.0",
"typescript": "^4.5.4"
},
"scripts": {
"compile": "hardhat compile",
"console": "hardhat console",
"test": "hardhat test",
"typechain": "hardhat typechain",
"chain": "hardhat node",
"deploy": "hardhat deploy",
"lint": "prettier --list-different 'contracts/**/*.sol' && prettier -c 'test/**/*.ts'",
"format:sol": "prettier --write 'contracts/**/*.sol'",
"format:ts": "prettier --write 'test/**/*.ts'",
"format": "yarn format:sol && yarn format:ts"
}
}