-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.26 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
{
"name": "xdefi-distribution",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"coverage": "hardhat coverage",
"deploy:ropsten": "hardhat run scripts/deploy.js --network ropsten",
"deploy:rinkeby": "hardhat run scripts/deploy.js --network rinkeby",
"deploy:mainnet": "hardhat run scripts/deploy.js --network mainnet",
"deploy:ganache": "hardhat run scripts/deploy.js --network ganache",
"lock:ganache": "hardhat run scripts/sampleLock.js --network ganache",
"server": "node ./backend/index.js",
"prettier": "prettier --write './'"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.2",
"hardhat": "^2.13.0",
"hardhat-gas-reporter": "^1.0.6",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.7.17"
},
"dependencies": {
"@openzeppelin/contracts": "^4.8.2",
"axios": "^0.26.0"
}
}