-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
62 lines (62 loc) · 1.83 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "sturdy-semitransferable-token",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"test": "rm -f ./merkle.json && npx hardhat test --deploy-fixture",
"node": "npx hardhat node --no-deploy",
"deploy": "rm -f ./merkle.json && npx hardhat deploy",
"verify": "npx hardhat etherscan-verify",
"prepare": "husky install",
"generate": "npx hardhat generateMerkletree"
},
"author": "",
"license": "AGPL-v3",
"engines": {
"node": ">=16.12.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-etherscan": "^3.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/test-environment": "^0.1.9",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"chai": "^4.3.7",
"chai-bignumber": "^3.1.0",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.12.5",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.11.22",
"hardhat-gas-reporter": "^1.0.9",
"husky": "^8.0.0",
"prettier": "^2.8.4",
"prettier-plugin-solidity": "^1.1.2",
"pretty-quick": "^3.1.3",
"sol-merger": "^4.1.1",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.0",
"@openzeppelin/contracts-upgradeable": "^4.8.1",
"@openzeppelin/merkle-tree": "^1.0.2",
"@types/jest": "^29.2.5",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3"
}
}