-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
51
{
"name": "hardhat-boilerplate",
"version": "1.0.0",
"description": "A boilerplate repository to get you started with Hardhat and Ethereum development",
"scripts": {
"start": "node server/index.js",
"build": "tsc -p .",
"dev": "nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" server/index.ts",
"test": "hardhat test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NomicFoundation/hardhat-boilerplate.git"
},
"author": "Nomic Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/NomicFoundation/hardhat-boilerplate/issues"
},
"homepage": "https://github.com/NomicFoundation/hardhat-boilerplate#readme",
"devDependencies": {
"@ethersproject/abi": "^5.4.7",
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^1.0.1",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"chai": "^4.2.0",
"ethers": "^5.4.7",
"hardhat": "^2.9.9",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.7.21",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.2",
"@types/express": "^4.17.13",
"@types/node": "^18.6.2",
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"evmosjs": "^0.2.8",
"express": "^4.18.1",
"nodemon": "^2.0.19"
}
}