-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
{
"name": "daisy-contract",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run compile && npx hardhat typechain",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"daisy test": "npx hardhat test test/DaisyTest.ts",
"coverage": "npm run build && npx hardhat coverage --temp artifacts --network coverage",
"rebuild": "npm run clean && npm run build && npm run test",
"solhint": "solhint 'contracts/**/*.sol'"
},
"author": "Maria",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.1.0",
"@typechain/ethers-v5": "^5.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.14.5",
"chai": "^4.3.0",
"dotenv": "^8.2.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"ethereum-waffle": "^3.2.2",
"ethers": "^5.0.29",
"hardhat": "^2.0.8",
"hardhat-deploy": "^0.7.0-beta.23",
"hardhat-deploy-ethers": "^0.3.0-beta.5",
"hardhat-typechain": "^0.3.4",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"solidity-coverage": "^0.7.13",
"ts-generator": "^0.1.1",
"ts-morph": "^8.1.2",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3",
"web3": "^1.2.9"
},
"dependencies": {
"@typechain/web3-v1": "^2.0.0",
"ethereumjs-abi": "^0.6.8",
"tronweb": "^3.2.4",
"yesno": "^0.3.1"
}
}