-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "boilerplate-sol",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "TS_NODE_TRANSPILE_ONLY=1 npx hardhat test",
"compile": "npx hardhat compile",
"coverage": "npx hardhat coverage",
"lint": "eslint 'test/**/*.ts'",
"lint:fix": "eslint --fix 'test/**/*.ts'"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.3.0",
"@typechain/ethers-v5": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"dotenv": "^9.0.2",
"eslint": "^7.21.0",
"eslint-plugin-import": "^2.22.1",
"hardhat-deploy": "^0.7.5",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"solidity-coverage": "^0.7.13",
"ts-generator": "^0.1.1",
"typechain": "^4.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}