-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.47 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
{
"name": "cs1101",
"version": "1.0.0",
"description": "CS01: Blockchain Development on Ethereum with Solidity and Hardhat",
"main": "dist/index.js",
"scripts": {
"compile": "hardhat compile",
"build": "yarn clean && hardhat compile && tsc",
"docs": "typedoc --excludePrivate --excludeProtected ./index.ts",
"ci:docs": "yarn docs && gh-pages -d docs",
"test": "yarn build && hardhat test",
"test:watch": "nodemon --watch test --watch src --ext ts --exec 'yarn test' --signal SIGTERM",
"clean": "rimraf ./dist ./docs"
},
"author": "",
"license": "ISC",
"dependencies": {
"@openzeppelin/contracts": "^4.9.3",
"ethers": "^6.7.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@types/node": "^20.5.7",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"gh-pages": "^6.0.0",
"hardhat": "^2.17.3",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-gas-reporter": "^1.0.8",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"solidity-coverage": "^0.8.1",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}