-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.48 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
63
64
65
66
67
{
"name": "projectname",
"version": "1.0.0",
"license": "UNLICENSED",
"private": true,
"scripts": {
"clean": "rm -rf './frontend/src/hardhat' && yarn hardhat clean",
"sl": "yarn prettier --write 'contracts/**/*.sol'",
"sh": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"size": "yarn hardhat size-contracts",
"prec": "yarn clean && yarn sl",
"c": "yarn hardhat compile",
"l": "yarn prettier --write './deploy/*.ts' './test/**/*.ts' './hardhat.config.ts'",
"pret": "yarn c && yarn l",
"t": "yarn hardhat test",
"pret:coverage": "yarn c && yarn l",
"t:coverage": "yarn hardhat coverage",
"server": "yarn hardhat node --watch",
"deploy": "yarn hardhat --network hardhat deploy",
"deploy:local": "yarn hardhat --network localhost deploy",
"deploy:ropsten": "yarn hardhat --network ropsten deploy"
},
"devDependencies": {
"@codechecks/client": "0.1.10",
"@defi-wonderland/smock": "2.0.7",
"@nomiclabs/hardhat-ethers": "yarn:hardhat-deploy-ethers@0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "2.1.1",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@typechain/ethers-v5": "8.0.3",
"@typechain/hardhat": "3.0.0",
"@types/chai": "4.2.15",
"@types/mocha": "8.2.1",
"@types/node": "14.14.31",
"@typescript-eslint/eslint-plugin": "4.16.1",
"@typescript-eslint/parser": "4.16.1",
"chai": "4.3.3",
"dotenv": "8.2.0",
"envfile": "6.17.0",
"eslint": "7.21.0",
"eslint-config-prettier": "8.1.0",
"ethereum-waffle": "3.4.0",
"ethereumjs-util": "7.0.9",
"ethers": "5.4.7",
"hardhat": "2.6.4",
"hardhat-contract-sizer": "2.0.3",
"hardhat-deploy": "0.9.24",
"hardhat-gas-reporter": "1.0.4",
"prettier": "2.3.0",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solhint": "3.3.3",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "0.7.17",
"ts-generator": "0.1.1",
"ts-morph": "9.1.0",
"ts-node": "9.1.1",
"typechain": "6.0.3",
"typescript": "4.2.3",
"web3-utils": "1.3.4"
},
"dependencies": {
"@openzeppelin/contracts": "4.4.0",
"@openzeppelin/contracts-upgradeable": "4.4.0",
"@openzeppelin/hardhat-upgrades": "1.9.0",
"keccak256": "1.0.3",
"merkletreejs": "0.2.24"
}
}