-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
35 lines (35 loc) · 1.08 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
{
"name": "mirror-protocol-v1",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:mirror-xyz/ethereum-protocol.git",
"author": "<[email protected]>",
"license": "MIT",
"scripts": {
"test": "hardhat test",
"fix:flatten": "sed -i '' '///SPDX/,+1 d' flattened/MirrorWriteToken.sol",
"deploy:default": "hardhat run scripts/deploy.ts",
"deploy:rinkeby": "hardhat run --network rinkeby scripts/deploy.ts",
"deploy:mainnet": "hardhat run --network mainnet scripts/deploy.ts"
},
"dependencies": {
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@openzeppelin/contracts": "^3.3.0",
"@typechain/ethers-v5": "^5.0.0",
"@types/mocha": "^8.2.0",
"commander": "^7.2.0",
"hardhat": "^2.0.7",
"hardhat-typechain": "^0.3.4",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typechain": "^4.0.1",
"typescript": "^4.1.3"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.25"
}
}