-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.64 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
{
"name": "solidity-template",
"scripts": {
"clean": "rm -rf ./artifacts ./cache ./typechain",
"compile": "hardhat compile",
"node": "hardhat node",
"deploy": "hardhat deploy:contract",
"deploy:proxy": "hardhat deploy:proxy",
"deploy:create2Factory": "hardhat deploy:create2Factory",
"deploy:contractFromCreate2Factory": "hardhat deploy:contractFromCreate2Factory",
"deploy:proxyFromCreate2Factory": "hardhat deploy:proxyFromCreate2Factory",
"upgrade": "hardhat upgrade",
"verify": "hardhat verify:contract",
"verify:create2": "hardhat verify:create2",
"verify:proxy": "hardhat verify:proxy",
"verify:proxyFromCreate2": "hardhat verify:proxyFromCreate2",
"verify:goerli": "hardhat run --network goerli scripts/verify.ts",
"test": "rm -r test/__snapshots__ & hardhat test",
"test:gas": "hardhat test --grep gas",
"eslint": "eslint -c .eslintrc \"./**/*.ts\"",
"eslint:fix": "eslint --fix \"./src/*.ts\""
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.5",
"@openzeppelin/contracts": "^4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.23.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@uniswap/snapshot-gas-cost": "^1.0.0",
"dotenv": "^16.0.3",
"ericlint": "^1.1.9",
"ethers": "^5.7.0",
"hardhat": "^2.14.0",
"hardhat-gas-reporter": "^1.0.2",
"mocha": "^9.2.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"dependencies": {
"@openzeppelin/contracts-upgradeable": "^4.8.3"
}
}