-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "solidity-hardhat-template",
"version": "1.0.0",
"main": "index.js",
"author": "Xander Deseyn",
"license": "MIT",
"scripts": {
"accounts": "yarn hardhat accounts",
"gen-types": "yarn typechain --target ethers-v5 --out-dir types 'artifacts/!(build-info)/**/+([a-zA-Z0-9]).json'",
"node": "yarn hardhat node",
"compile": "yarn hardhat compile && yarn gen-types",
"deploy": "yarn hardhat run scripts/deploy.ts",
"test": "yarn hardhat test",
"watch": "yarn hardhat watch test"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.0.19",
"hardhat": "^2.9.3",
"hardhat-watcher": "^2.2.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0",
"@typechain/ethers-v5": "^10.0.0",
"ts-generator": "^0.1.1",
"typechain": "^8.0.0"
}
}