This repository was archived by the owner on Feb 11, 2022. It is now read-only.
forked from modadao/moda-token
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.3 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.3 KB
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": "moda-dao",
"scripts": {
"build": "hardhat compile",
"clean": "hardhat clean",
"compile": "hardhat compile",
"recompile": "hardhat clean && hardhat compile",
"deploy": "hardhat run scripts/deploy.js",
"run:script": "hardhat run",
"node": "hardhat node",
"test": "hardhat test",
"coverage": "hardhat coverage --testfiles \"./test/*.test.ts\"",
"typecheck": "yarn compile && tsc --noEmit",
"verify": "hardhat verify"
},
"dependencies": {
"@openzeppelin/contracts": "4.4.1",
"@openzeppelin/contracts-upgradeable": "4.4.1",
"abdk-libraries-solidity": "3.0.0",
"chai-datetime": "1.8.0"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.4",
"@nomiclabs/hardhat-etherscan": "3.0.0",
"@nomiclabs/hardhat-waffle": "2.0.1",
"@openzeppelin/hardhat-upgrades": "1.12.1",
"@openzeppelin/test-helpers": "0.5.15",
"@typechain/ethers-v5": "9.0.0",
"@typechain/hardhat": "4.0.0",
"@types/chai": "4.3.0",
"@types/chai-datetime": "0.0.37",
"@types/mocha": "9.0.0",
"@types/node": "17.0.8",
"chai": "4.3.4",
"dotenv": "11.0.0",
"ethereum-waffle": "3.4.0",
"ethers": "5.5.3",
"hardhat": "2.8.2",
"solidity-coverage": "^0.7.17",
"sqlite3": "5.0.2",
"truffle-plugin-verify": "0.5.20",
"ts-node": "10.4.0",
"typechain": "7.0.0",
"typescript": "4.5.4"
}
}