|
| 1 | +{ |
| 2 | + "name": "sol-challenge", |
| 3 | + "version": "1.0.0", |
| 4 | + "main": "index.js", |
| 5 | + "author": "massun-onibakuchi", |
| 6 | + "license": "MIT", |
| 7 | + "dependencies": { |
| 8 | + "@openzeppelin/contracts": "^4.6.0", |
| 9 | + "hardhat": "^2.8.0" |
| 10 | + }, |
| 11 | + "devDependencies": { |
| 12 | + "@nomiclabs/hardhat-ethers": "^2.0.3", |
| 13 | + "@nomiclabs/hardhat-waffle": "^2.0.1", |
| 14 | + "@typechain/ethers-v5": "^8.0.5", |
| 15 | + "@typechain/hardhat": "^3.1.0", |
| 16 | + "@types/mocha": "^9.0.0", |
| 17 | + "@types/node": "^17.0.7", |
| 18 | + "chai": "^4.3.4", |
| 19 | + "dotenv": "^10.0.0", |
| 20 | + "eslint": "^8.6.0", |
| 21 | + "ethereum-waffle": "^3.4.0", |
| 22 | + "ethers": "^5.5.2", |
| 23 | + "prettier": "^2.5.1", |
| 24 | + "prettier-plugin-solidity": "^1.0.0-beta.19", |
| 25 | + "ts-node": "^10.4.0", |
| 26 | + "typechain": "^6.1.0", |
| 27 | + "typescript": "^4.5.4" |
| 28 | + }, |
| 29 | + "scripts": { |
| 30 | + "compile": "hardhat compile", |
| 31 | + "console": "hardhat console", |
| 32 | + "test": "yarn hardhat test", |
| 33 | + "typechain": "hardhat typechain", |
| 34 | + "chain": "hardhat node", |
| 35 | + "deploy": "hardhat deploy", |
| 36 | + "lint": "prettier --list-different 'contracts/**/*.sol' && prettier -c 'test/**/*.ts'", |
| 37 | + "format:sol": "prettier --write 'contracts/**/*.sol'", |
| 38 | + "format:ts": "prettier --write 'test/**/*.ts'", |
| 39 | + "format": "yarn format:sol && yarn format:ts" |
| 40 | + } |
| 41 | +} |
0 commit comments